]> source.dussan.org Git - nextcloud-server.git/commitdiff
Style cleanup settings
authorBart Visscher <bartv@thisnet.nl>
Thu, 14 Feb 2013 22:29:51 +0000 (23:29 +0100)
committerBart Visscher <bartv@thisnet.nl>
Thu, 21 Feb 2013 22:47:56 +0000 (23:47 +0100)
settings/ajax/setquota.php
settings/ajax/togglegroups.php
settings/oauth.php
settings/routes.php
settings/templates/apps.php
settings/templates/help.php
settings/templates/personal.php
settings/users.php

index 356466c0c002c3d509a5aef5cf3e8ff307143a8a..cd8dc0e2796ee8fe99df217f6009a1e86f85f87b 100644 (file)
@@ -10,7 +10,9 @@ OCP\JSON::callCheck();
 
 $username = isset($_POST["username"])?$_POST["username"]:'';
 
-if(($username == '' && !OC_User::isAdminUser(OC_User::getUser()))|| (!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) {
+if(($username == '' && !OC_User::isAdminUser(OC_User::getUser()))
+       || (!OC_User::isAdminUser(OC_User::getUser())
+               && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) {
        $l = OC_L10N::get('core');
        OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
        exit();
index 9bba9c5269d0f8d56e24a3252e5a2432fd695e74..f6fd9aba6d908a0d77f52732bcbedcf1bddda149 100644 (file)
@@ -13,7 +13,9 @@ if($username == OC_User::getUser() && $group == "admin" &&  OC_User::isAdminUser
        exit();
 }
 
-if(!OC_User::isAdminUser(OC_User::getUser()) && (!OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username) || !OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group))) {
+if(!OC_User::isAdminUser(OC_User::getUser())
+       && (!OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)
+               || !OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group))) {
        $l = OC_L10N::get('core');
        OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
        exit();
index 07b7ae5c31d0ef3c5915ceb35514f4e7efe6285b..8b4759f999e3256223cbf1f7fca7d4ba98ab6792 100644 (file)
@@ -5,7 +5,7 @@
  * See the COPYING-README file.
  */
 
-require_once('../lib/base.php');
+require_once '../lib/base.php';
 // Logic
 $operation = isset($_GET['operation']) ? $_GET['operation'] : '';
 $server = OC_OAuth_server::init();
@@ -23,9 +23,10 @@ switch($operation){
                        $callbackfail = empty($_GET['callback_fail']) ? null : $_GET['callback_fail'];
                        $consumer = OC_OAuth_Server::register_consumer($_GET['name'], $_GET['url'], $callbacksuccess, $callbackfail);
                        
-                       echo 'Registered consumer successfully! </br></br>Key: ' . $consumer->key . '</br>Secret: ' . $consumer->secret;
+                       echo 'Registered consumer successfully! </br></br>Key: ' . $consumer->key
+                               . '</br>Secret: ' . $consumer->secret;
                }
-       break;
+               break;
        
        case 'request_token':
                
@@ -38,7 +39,7 @@ switch($operation){
                        echo $exception->getMessage();
                }
        
-       break;
+               break;
        case 'authorise';
        
                OC_API::checkLoggedIn();
@@ -61,9 +62,11 @@ switch($operation){
                if(!empty($notfound)) {
                        // We need more apps :( Show error
                        if(count($notfound)==1) {
-                               $message = 'requires that you have an extra app installed on your ownCloud. Please contact your ownCloud administrator and ask them to install the app below.';
+                               $message = 'requires that you have an extra app installed on your ownCloud.'
+                                       .' Please contact your ownCloud administrator and ask them to install the app below.';
                        } else {
-                               $message = 'requires that you have some extra apps installed on your ownCloud. Please contract your ownCloud administrator and ask them to install the apps below.';
+                               $message = 'requires that you have some extra apps installed on your ownCloud.'
+                                       .' Please contract your ownCloud administrator and ask them to install the apps below.';
                        }
                        $t = new OC_Template('settings', 'oauth-required-apps', 'guest');
                        OC_Util::addStyle('settings', 'oauth');
@@ -77,7 +80,7 @@ switch($operation){
                        $t->assign('consumer', $consumer);
                        $t->printPage();
                }
-       break;
+               break;
        
        case 'access_token';
                try {
@@ -89,10 +92,10 @@ switch($operation){
                        echo $exception->getMessage();
                }
                
-       break;
+               break;
        default:
                // Something went wrong, we need an operation!
                OC_Response::setStatus(400);
-       break;
+               break;
        
 }
index 0a8af0dde2b35ba068b5d77ed2b0994d475722fd..26d933dba45fee0b43c4a046643ebff460050292 100644 (file)
@@ -40,7 +40,7 @@ $this->create('settings_ajax_removegroup', '/settings/ajax/removegroup.php')
 $this->create('settings_ajax_changepassword', '/settings/ajax/changepassword.php')
        ->actionInclude('settings/ajax/changepassword.php');
 $this->create('settings_ajax_changedisplayname', '/settings/ajax/changedisplayname.php')\r
-->actionInclude('settings/ajax/changedisplayname.php');
+       ->actionInclude('settings/ajax/changedisplayname.php');
 // personel
 $this->create('settings_ajax_lostpassword', '/settings/ajax/lostpassword.php')
        ->actionInclude('settings/ajax/lostpassword.php');
index ed1232ac3227204c4719d9b9421581cd52cad6ed..b6e98c41bd94b53b4ee70ca94b726007dbfc0255 100644 (file)
@@ -3,7 +3,8 @@
  * This file is licensed under the Affero General Public License version 3 or later.
  * See the COPYING-README file.
  */?>
- <script type="text/javascript" src="<?php echo OC_Helper::linkToRoute('apps_custom');?>?appid=<?php echo $_['appid']; ?>"></script>
+ <script type="text/javascript"
+       src="<?php echo OC_Helper::linkToRoute('apps_custom');?>?appid=<?php echo $_['appid']; ?>"></script>
  <script type="text/javascript" src="<?php echo OC_Helper::linkTo('settings/js', 'apps.js');?>"></script>
 
 <div id="controls">
 </div>
 <ul id="leftcontent" class="applist hascontrols">
        <?php foreach($_['apps'] as $app):?>
-       <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>" <?php if ( isset( $app['ocs_id'] ) ) { echo "data-id-ocs=\"{$app['ocs_id']}\""; } ?>
-               data-type="<?php echo $app['internal'] ? 'internal' : 'external' ?>" data-installed="1">
-               <a class="app<?php if(!$app['internal']) echo ' externalapp' ?>" href="?appid=<?php echo $app['id'] ?>"><?php echo htmlentities($app['name']) ?></a>
-               <?php  if(!$app['internal']) echo '<small class="'.$app['internalclass'].' list">'.$app['internallabel'].'</small>' ?>
+       <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>"
+               <?php if ( isset( $app['ocs_id'] ) ) { echo "data-id-ocs=\"{$app['ocs_id']}\""; } ?>
+                       data-type="<?php echo $app['internal'] ? 'internal' : 'external' ?>" data-installed="1">
+               <a class="app<?php if(!$app['internal']) echo ' externalapp' ?>"
+                       href="?appid=<?php echo $app['id'] ?>"><?php echo htmlentities($app['name']) ?></a>
+               <?php  if(!$app['internal'])
+                       echo '<small class="'.$app['internalclass'].' list">'.$app['internallabel'].'</small>' ?>
        </li>
        <?php endforeach;?>
 </ul>
 <div id="rightcontent">
        <div class="appinfo">
-       <h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span class="version"></span><small class="externalapp" style="visibility:hidden;"></small></h3>
+       <h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span
+               class="version"></span><small class="externalapp" style="visibility:hidden;"></small></h3>
        <span class="score"></span>
        <p class="description"></p>
        <img src="" class="preview" />
-       <p class="appslink hidden"><a href="#" target="_blank"><?php echo $l->t('See application page at apps.owncloud.com');?></a></p>
-       <p class="license hidden"><?php echo $l->t('<span class="licence"></span>-licensed by <span class="author"></span>');?></p>
+       <p class="appslink hidden"><a href="#" target="_blank"><?php
+               echo $l->t('See application page at apps.owncloud.com');?></a></p>
+       <p class="license hidden"><?php
+               echo $l->t('<span class="licence"></span>-licensed by <span class="author"></span>');?></p>
        <input class="enable hidden" type="submit" />
        <input class="update hidden" type="submit" value="<?php echo($l->t('Update')); ?>" />
        </div>
index 315cbfdb9a2940f83fd3167a388b3a09cf9cf5f9..7b2a3321c293cafa5b537ec7520dc1791d1e5c93 100644 (file)
@@ -1,14 +1,20 @@
 <div id="controls">
        <?php if($_['admin']) { ?>
-               <a class="button newquestion <?php echo($_['style1']); ?>" href="<?php echo($_['url1']); ?>"><?php echo $l->t( 'User Documentation' ); ?></a>
-               <a class="button newquestion <?php echo($_['style2']); ?>" href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a>
+               <a class="button newquestion <?php echo($_['style1']); ?>"
+                       href="<?php echo($_['url1']); ?>"><?php echo $l->t( 'User Documentation' ); ?></a>
+               <a class="button newquestion <?php echo($_['style2']); ?>"
+                       href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a>
        <?php } ?>
-       <a class="button newquestion" href="http://owncloud.org/support" target="_blank"><?php echo $l->t( 'Online Documentation' ); ?></a>
-       <a class="button newquestion" href="http://forum.owncloud.org" target="_blank"><?php echo $l->t( 'Forum' ); ?></a>
+       <a class="button newquestion" href="http://owncloud.org/support" target="_blank"><?php
+               echo $l->t( 'Online Documentation' ); ?></a>
+       <a class="button newquestion" href="http://forum.owncloud.org" target="_blank"><?php
+               echo $l->t( 'Forum' ); ?></a>
        <?php if($_['admin']) { ?>
-               <a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php echo $l->t( 'Bugtracker' ); ?></a>
+               <a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php
+                       echo $l->t( 'Bugtracker' ); ?></a>
        <?php } ?>
-       <a class="button newquestion" href="http://owncloud.com" target="_blank"><?php echo $l->t( 'Commercial Support' ); ?></a>
+       <a class="button newquestion" href="http://owncloud.com" target="_blank"><?php
+               echo $l->t( 'Commercial Support' ); ?></a>
 </div>
 <div class="help-includes">
        <iframe src="<?php echo($_['url']); ?>" class="help-iframe">abc</iframe>
index 6e9ad5e1acb4279753c8370ea8871d1b9bb75d2c..e6f9e38189ea200f6bcc6c92afedbbc05715b1bf 100644 (file)
@@ -5,7 +5,8 @@
  */?>
 
 <div id="quota" class="personalblock"><div style="width:<?php echo $_['usage_relative'];?>%;">
-       <p id="quotatext"><?php echo $l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>', array($_['usage'], $_['total_space']));?></p>
+       <p id="quotatext"><?php echo $l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>',
+               array($_['usage'], $_['total_space']));?></p>
 </div></div>
 
 
@@ -37,7 +38,8 @@ if($_['passwordChangeSupported']) {
                <div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div>
                <div id="passworderror"><?php echo $l->t('Unable to change your password');?></div>
                <input type="password" id="pass1" name="oldpassword" placeholder="<?php echo $l->t('Current password');?>" />
-               <input type="password" id="pass2" name="password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" />
+               <input type="password" id="pass2" name="password"
+                       placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" />
                <input type="checkbox" id="personal-show" name="show" /><label for="personal-show"></label>
                <input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" />
        </fieldset>
@@ -66,7 +68,8 @@ if($_['displayNameChangeSupported']) {
 <form id="lostpassword">
        <fieldset class="personalblock">
                <legend><strong><?php echo $l->t('Email');?></strong></legend>
-               <input type="text" name="email" id="email" value="<?php echo $_['email']; ?>" placeholder="<?php echo $l->t('Your email address');?>" /><span class="msg"></span><br />
+               <input type="text" name="email" id="email" value="<?php echo $_['email']; ?>"
+                       placeholder="<?php echo $l->t('Your email address');?>" /><span class="msg"></span><br />
                <em><?php echo $l->t('Fill in an email address to enable password recovery');?></em>
        </fieldset>
 </form>
@@ -79,7 +82,8 @@ if($_['displayNameChangeSupported']) {
                        <option value="<?php echo $language['code'];?>"><?php echo $language['name'];?></option>
                <?php endforeach;?>
                </select>
-               <a href="https://www.transifex.net/projects/p/owncloud/team/<?php echo $_['languages'][0]['code'];?>/" target="_blank"><em><?php echo $l->t('Help translate');?></em></a>
+               <a href="https://www.transifex.net/projects/p/owncloud/team/<?php echo $_['languages'][0]['code'];?>/"
+                       target="_blank"><em><?php echo $l->t('Help translate');?></em></a>
        </fieldset>
 </form>
 
@@ -96,8 +100,12 @@ if($_['displayNameChangeSupported']) {
 
 <fieldset class="personalblock">
        <legend><strong><?php echo $l->t('Version');?></strong></legend>
-       <strong>ownCloud</strong> <?php echo(OC_Util::getVersionString()); ?> <?php echo(OC_Util::getEditionString()); ?> <br />
-       <?php echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.'); ?>
+       <strong>ownCloud</strong> <?php echo(OC_Util::getVersionString()); ?>
+       <?php echo(OC_Util::getEditionString()); ?> <br />
+       <?php echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>,'
+               .' the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed'
+               .' under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr'
+               .' title="Affero General Public License">AGPL</abbr></a>.'); ?>
 </fieldset>
 
 
index 7fcd1d3ed023247f6d2b9327590bfffd44263a05..94e6d0a9a10f9ee5751b7d5b645692642a0c5871 100644 (file)
@@ -40,12 +40,14 @@ foreach($quotaPreset as &$preset) {
 $quotaPreset=array_diff($quotaPreset, array('default', 'none'));
 
 $defaultQuota=OC_Appconfig::getValue('files', 'default_quota', 'none');
-$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false && array_search($defaultQuota, array('none', 'default'))===false;
+$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false
+       && array_search($defaultQuota, array('none', 'default'))===false;
 
 // load users and quota
 foreach($accessibleusers as $uid => $displayName) {
        $quota=OC_Preferences::getValue($uid, 'files', 'quota', 'default');
-       $isQuotaUserDefined=array_search($quota, $quotaPreset)===false && array_search($quota, array('none', 'default'))===false;
+       $isQuotaUserDefined=array_search($quota, $quotaPreset)===false
+               && array_search($quota, array('none', 'default'))===false;
 
        $name = $displayName;
        if ( $displayName != $uid ) {