nextcloud/admin/ajax/creategroup.php

26 lines
662 B
PHP
Raw Normal View History

2011-04-17 01:26:55 +04:00
<?php
// Init owncloud
require_once('../../lib/base.php');
// We send json data
header( "Content-Type: application/jsonrequest" );
// Check if we are a user
if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
exit();
}
2011-04-17 03:04:23 +04:00
$name = $_POST["groupname"];
2011-04-17 01:26:55 +04:00
// Return Success story
2011-04-17 03:04:23 +04:00
if( OC_GROUP::createGroup( $name )){
echo json_encode( array( "status" => "success", "data" => array( "groupname" => $name )));
2011-04-17 01:26:55 +04:00
}
else{
2011-04-17 03:04:23 +04:00
echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to add group" )));
2011-04-17 01:26:55 +04:00
}
?>