add OC_GROUP::createGroup();

This commit is contained in:
Robin Appelman 2011-04-17 00:28:44 +02:00
parent 9947428d79
commit 25d687f35a
1 changed files with 9 additions and 0 deletions

View File

@ -124,4 +124,13 @@ class OC_GROUP {
public static function getGroups() {
return self::$_backend->getGroups();
}
/**
* create a new group
*
* @param string $name Name of the group
*/
public static function createGroup($name) {
return self::$_backend->createGroup($name);
}
}