Welcome to mirror list, hosted at ThFree Co, Russian Federation.

removegroup.php « ajax « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf80da741c702d4a3a4f0e69dc91aa564561e356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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( OC_User::getUser(), 'admin' )){
	echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
	exit();
}

$name = $_POST["groupname"];

// Return Success story
if( OC_Group::deleteGroup( $name )){
	echo json_encode( array( "status" => "success", "data" => array( "groupname" => $name )));
}
else{
	echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to delete group" )));
}

?>