summaryrefslogtreecommitdiffstats
path: root/settings/ajax
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:34:52 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:34:52 +0300
commite10f46d97879ee08d7cc29e914ae96fb6bd125d7 (patch)
treeb165d971035d5d7d08e3fd913c1c76a00f3e7259 /settings/ajax
parent69240afd7af48e8166aa80fad75659c079c2f991 (diff)
downloadnextcloud-server-e10f46d97879ee08d7cc29e914ae96fb6bd125d7.tar.gz
nextcloud-server-e10f46d97879ee08d7cc29e914ae96fb6bd125d7.zip
Update settings/ajax/createuser.php
respect coding style
Diffstat (limited to 'settings/ajax')
-rw-r--r--settings/ajax/createuser.php25
1 files changed, 14 insertions, 11 deletions
diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php
index eaca5b50745..22320b870e8 100644
--- a/settings/ajax/createuser.php
+++ b/settings/ajax/createuser.php
@@ -1,32 +1,32 @@
<?php
// Init owncloud
-require_once('../../lib/base.php');
+require_once '../../lib/base.php';
OCP\JSON::callCheck();
// Check if we are a user
-if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && !OC_SubAdmin::isSubAdmin(OC_User::getUser()))){
+if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && !OC_SubAdmin::isSubAdmin(OC_User::getUser()))) {
OC_JSON::error(array("data" => array( "message" => "Authentication error" )));
exit();
}
OCP\JSON::callCheck();
-$isadmin = OC_Group::inGroup(OC_User::getUser(),'admin')?true:false;
+$isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false;
-if($isadmin){
+if($isadmin) {
$groups = array();
- if( isset( $_POST["groups"] )){
+ if( isset( $_POST["groups"] )) {
$groups = $_POST["groups"];
}
}else{
- if(isset( $_POST["groups"] )){
+ if(isset( $_POST["groups"] )) {
$groups = array();
foreach($_POST["groups"] as $group){
- if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)){
+ if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) {
$groups[] = $group;
}
}
- if(count($groups) == 0){
+ if(count($groups) == 0) {
$groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser());
}
}else{
@@ -37,7 +37,7 @@ $username = $_POST["username"];
$password = $_POST["password"];
// Does the group exist?
-if( in_array( $username, OC_User::getUsers())){
+if( in_array( $username, OC_User::getUsers())) {
OC_JSON::error(array("data" => array( "message" => "User already exists" )));
exit();
}
@@ -46,12 +46,15 @@ if( in_array( $username, OC_User::getUsers())){
try {
OC_User::createUser($username, $password);
foreach( $groups as $i ){
- if(!OC_Group::groupExists($i)){
+ if(!OC_Group::groupExists($i)) {
OC_Group::createGroup($i);
}
OC_Group::addToGroup( $username, $i );
}
- OC_JSON::success(array("data" => array( "username" => $username, "groups" => implode( ", ", OC_Group::getUserGroups( $username )))));
+ OC_JSON::success(array("data" =>
+ array(
+ "username" => $username,
+ "groups" => implode( ", ", OC_Group::getUserGroups( $username )))));
} catch (Exception $exception) {
OC_JSON::error(array("data" => array( "message" => $exception->getMessage())));
}