server/settings/ajax/creategroup.php

21 lines
504 B
PHP
Raw Normal View History

2011-04-16 21:26:55 +00:00
<?php
2012-07-20 18:39:20 +00:00
OCP\JSON::callCheck();
2012-10-15 14:41:42 +00:00
OC_JSON::checkAdminUser();
2012-07-07 13:27:04 +00:00
2011-04-18 10:39:28 +00: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 10:39:28 +00:00
exit();
}
2011-04-16 21:26:55 +00:00
// Return Success story
if( OC_Group::createGroup( $groupname )) {
OC_JSON::success(array("data" => array( "groupname" => $groupname )));
2011-04-16 21:26:55 +00:00
}
else{
OC_JSON::error(array("data" => array( "message" => $l->t("Unable to add group") )));
2011-04-16 21:26:55 +00:00
}