Added text ACS warning to admin's user settings page, and corresponding CSS styles
This commit is contained in:
parent
dc4b891327
commit
f374dae233
|
@ -106,6 +106,7 @@ label.infield { cursor: text !important; }
|
|||
/* VARIOUS REUSABLE SELECTORS */
|
||||
.hidden { display:none; }
|
||||
.bold { font-weight: bold; }
|
||||
.center { text-align: center; }
|
||||
|
||||
#notification { z-index:101; cursor:pointer; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position:fixed; left:50%; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; }
|
||||
|
||||
|
|
|
@ -53,3 +53,5 @@ span.version { margin-left:3em; color:#ddd; }
|
|||
|
||||
/* ADMIN */
|
||||
span.securitywarning {color:#C33; font-weight:bold; }
|
||||
h3.settingsNotice { font-size: 1.2em; }
|
||||
.settingsNotice { font-weight:bold; padding: 0.5em 0; }
|
||||
|
|
|
@ -112,3 +112,8 @@ foreach($_["groups"] as $group) {
|
|||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<!-- use a standard notification class / system for this message -->
|
||||
<?php if( $_["share_notice"] ):?>
|
||||
<h3 class="settingsNotice center"><?php echo $_["share_notice"]; ?></h3>
|
||||
<?php endif;?>
|
|
@ -33,11 +33,20 @@ foreach($quotaPreset as &$preset){
|
|||
|
||||
$defaultQuota=OC_Appconfig::getValue('files','default_quota','none');
|
||||
|
||||
$shareNotice = '';
|
||||
|
||||
if (\OC_App::isEnabled( "files_sharing" ) ) {
|
||||
|
||||
$shareNotice = 'Note: users may only share to groups that they belong to, and their members';
|
||||
|
||||
}
|
||||
|
||||
$tmpl = new OC_Template( "settings", "users", "user" );
|
||||
$tmpl->assign( "users", $users );
|
||||
$tmpl->assign( "groups", $groups );
|
||||
$tmpl->assign( 'quota_preset', $quotaPreset);
|
||||
$tmpl->assign( 'default_quota', $defaultQuota);
|
||||
$tmpl->assign( 'share_notice', $shareNotice);
|
||||
$tmpl->printPage();
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue