]> source.dussan.org Git - nextcloud-server.git/commitdiff
make reshare settings foldable
authorVolkan Gezer <volkangezer@gmail.com>
Thu, 29 May 2014 19:09:56 +0000 (21:09 +0200)
committerVolkan Gezer <volkangezer@gmail.com>
Thu, 29 May 2014 19:14:20 +0000 (21:14 +0200)
settings/js/admin.js
settings/templates/admin.php

index 249131464a805e1618b89631679cba374067b723..9353333b47e7375ed36d3acecc70e143728e04c1 100644 (file)
@@ -83,6 +83,9 @@ $(document).ready(function(){
        $('#allowLinks').change(function() {
                $("#publicLinkSettings").toggleClass('hidden', !this.checked);
        });
+       $('#allowResharing').change(function() {
+               $("#resharingSettings").toggleClass('hidden', !this.checked);
+       });
 
        $('#security').change(function(){
                $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );
index 9b632391f88aab085f6eb4450e21bad7099ba01c..a410447551e0ad75195fd8a906a035fffd83644e 100644 (file)
@@ -248,16 +248,14 @@ if (!$_['internetconnectionworking']) {
                                           value="1" <?php if ($_['allowResharing'] === 'yes') print_unescaped('checked="checked"'); ?> />
                                <label for="allowResharing"><?php p($l->t('Allow resharing'));?></label><br/>
                                <em><?php p($l->t('Allow users to share items shared with them again')); ?></em>
-                       </td>
-               </tr>
-               <tr>
-                       <td <?php if ($_['shareAPIEnabled'] === 'no') print_unescaped('class="hidden"');?>>
-                               <input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal"
-                                          value="global" <?php if ($_['sharePolicy'] === 'global') print_unescaped('checked="checked"'); ?> />
-                               <label for="sharePolicyGlobal"><?php p($l->t('Allow users to share with anyone')); ?></label><br/>
-                               <input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly"
-                                          value="groups_only" <?php if ($_['sharePolicy'] === 'groups_only') print_unescaped('checked="checked"'); ?> />
-                               <label for="sharePolicyGroupsOnly"><?php p($l->t('Allow users to only share with users in their groups'));?></label><br/>
+                               <div id="resharingSettings" <?php ($_['allowResharing'] === 'yes') ? print_unescaped('class="indent"') : print_unescaped('class="hidden indent"');?>>
+                                       <input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal"
+                                                   value="global" <?php if ($_['sharePolicy'] === 'global') print_unescaped('checked="checked"'); ?> />
+                                       <label for="sharePolicyGlobal"><?php p($l->t('Allow users to share with anyone')); ?></label><br/>
+                                       <input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly"
+                                                   value="groups_only" <?php if ($_['sharePolicy'] === 'groups_only') print_unescaped('checked="checked"'); ?> />
+                                       <label for="sharePolicyGroupsOnly"><?php p($l->t('Allow users to only share with users in their groups'));?></label><br/>
+                               </div>
                        </td>
                </tr>
                <tr>