settings.php 760 B

12345678
  1. <form id="resharing">
  2. <fieldset class="personalblock">
  3. <p><input type="checkbox" name="allowResharing" id="allowResharing" value="1" <?php if ($_['allowResharing'] == 'yes') echo ' checked="checked"'; ?> /> <label for="allowResharing"><?php echo $l->t('Enable Resharing'); ?></label> <br/>
  4. <em><?php echo $l->t('Allow users to reshare files they don\'t own');?></em></p>
  5. <p><input type="checkbox" name="allowSharingWithEveryone" id="allowSharingWithEveryone" value="1" <?php if ($_['allowSharingWithEveryone'] == 'yes') echo ' checked="checked"'; ?> /> <label for="allowSharingWithEveryone"><?php echo $l->t('Enable sharing with everyone'); ?></label> <br/>
  6. <em><?php echo $l->t('Allow users to share files with everyone');?></em></p>
  7. </fieldset>
  8. </form>