diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-15 21:06:29 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-15 21:09:13 +0200 |
commit | 523b0966d22d0fc149ca64afb32995a0eb29a6d3 (patch) | |
tree | 80525dab3705396fe527ec5b5da2e4fe817b2016 /settings/ajax/setquota.php | |
parent | 6173c0fbc262f0d02c45d9cf4e81b020ad839145 (diff) | |
download | nextcloud-server-523b0966d22d0fc149ca64afb32995a0eb29a6d3.tar.gz nextcloud-server-523b0966d22d0fc149ca64afb32995a0eb29a6d3.zip |
add option to set user quota
Diffstat (limited to 'settings/ajax/setquota.php')
-rw-r--r-- | settings/ajax/setquota.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php new file mode 100644 index 00000000000..244a85e3d9c --- /dev/null +++ b/settings/ajax/setquota.php @@ -0,0 +1,22 @@ +<?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(); +} + +$username = $_POST["username"]; +$quota= OC_Helper::computerFileSize($_POST["quota"]); + +// Return Success story +OC_Preferences::setValue($username,'files','quota',$quota); +echo json_encode( array( "status" => "success", "data" => array( "username" => $username ,'quota'=>$quota))); + +?> |