nextcloud/settings/ajax/creategroup.php

21 lines
504 B
PHP
Raw Normal View History

2011-04-17 01:26:55 +04:00
<?php
2012-07-20 22:39:20 +04:00
OCP\JSON::callCheck();
2012-10-15 18:41:42 +04:00
OC_JSON::checkAdminUser();
2012-07-07 17:27:04 +04:00
2011-04-18 14:39:28 +04:00
$groupname = $_POST["groupname"];
// Does the group exist?
if( in_array( $groupname, OC_Group::getGroups())) {
OC_JSON::error(array("data" => array( "message" => $l->t("Group already exists") )));
2011-04-18 14:39:28 +04:00
exit();
}
2011-04-17 01:26:55 +04:00
// Return Success story
if( OC_Group::createGroup( $groupname )) {
OC_JSON::success(array("data" => array( "groupname" => $groupname )));
2011-04-17 01:26:55 +04:00
}
else{
OC_JSON::error(array("data" => array( "message" => $l->t("Unable to add group") )));
2011-04-17 01:26:55 +04:00
}