Merge pull request #8784 from owncloud/fold-reshare-settings

make reshare settings foldable
This commit is contained in:
Morris Jobke 2014-06-02 14:37:10 +02:00
commit 6f4bdbdb94
2 changed files with 11 additions and 10 deletions

View File

@ -83,6 +83,9 @@ $(document).ready(function(){
$('#allowLinks').change(function() { $('#allowLinks').change(function() {
$("#publicLinkSettings").toggleClass('hidden', !this.checked); $("#publicLinkSettings").toggleClass('hidden', !this.checked);
}); });
$('#allowResharing').change(function() {
$("#resharingSettings").toggleClass('hidden', !this.checked);
});
$('#security').change(function(){ $('#security').change(function(){
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} ); $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );

View File

@ -263,16 +263,14 @@ if (!$_['internetconnectionworking']) {
value="1" <?php if ($_['allowResharing'] === 'yes') print_unescaped('checked="checked"'); ?> /> value="1" <?php if ($_['allowResharing'] === 'yes') print_unescaped('checked="checked"'); ?> />
<label for="allowResharing"><?php p($l->t('Allow resharing'));?></label><br/> <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> <em><?php p($l->t('Allow users to share items shared with them again')); ?></em>
</td> <div id="resharingSettings" <?php ($_['allowResharing'] === 'yes') ? print_unescaped('class="indent"') : print_unescaped('class="hidden indent"');?>>
</tr> <input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal"
<tr> value="global" <?php if ($_['sharePolicy'] === 'global') print_unescaped('checked="checked"'); ?> />
<td <?php if ($_['shareAPIEnabled'] === 'no') print_unescaped('class="hidden"');?>> <label for="sharePolicyGlobal"><?php p($l->t('Allow users to share with anyone')); ?></label><br/>
<input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal" <input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly"
value="global" <?php if ($_['sharePolicy'] === 'global') print_unescaped('checked="checked"'); ?> /> value="groups_only" <?php if ($_['sharePolicy'] === 'groups_only') print_unescaped('checked="checked"'); ?> />
<label for="sharePolicyGlobal"><?php p($l->t('Allow users to share with anyone')); ?></label><br/> <label for="sharePolicyGroupsOnly"><?php p($l->t('Allow users to only share with users in their groups'));?></label><br/>
<input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly" </div>
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/>
</td> </td>
</tr> </tr>
<tr> <tr>