aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-08-07 23:54:22 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-08-07 23:54:22 -0700
commit5933f13ab72337554d5fa23a064a3f61f3dee5e4 (patch)
treee22f6bd2c1b4fe6957984ed8fd9de9b655182508 /view
parentadce88e564f2e9a6c8487bf23762afe1413ed263 (diff)
downloadvolse-hubzilla-5933f13ab72337554d5fa23a064a3f61f3dee5e4.tar.gz
volse-hubzilla-5933f13ab72337554d5fa23a064a3f61f3dee5e4.tar.bz2
volse-hubzilla-5933f13ab72337554d5fa23a064a3f61f3dee5e4.zip
default acl's
Diffstat (limited to 'view')
-rw-r--r--view/acl_selectors.php30
-rw-r--r--view/settings.tpl18
-rw-r--r--view/style.css13
3 files changed, 56 insertions, 5 deletions
diff --git a/view/acl_selectors.php b/view/acl_selectors.php
index 0ffdc8ab3..71c244721 100644
--- a/view/acl_selectors.php
+++ b/view/acl_selectors.php
@@ -69,8 +69,28 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
return $o;
}
+function fixacl(&$item) {
+ $item = intval(str_replace(array('<','>'),array('',''),$item));
+}
-function populate_acl() {
+function populate_acl($user = null) {
+
+ $allow_cid = $allow_gid = $deny_cid = $deny_gid = false;
+
+ if(is_array($user)) {
+ $allow_cid = ((strlen($user['allow_cid']))
+ ? explode('><', $user['allow_cid']) : array() );
+ $allow_gid = ((strlen($user['allow_gid']))
+ ? explode('><', $user['allow_gid']) : array() );
+ $deny_cid = ((strlen($user['deny_cid']))
+ ? explode('><', $user['deny_cid']) : array() );
+ $deny_gid = ((strlen($user['deny_gid']))
+ ? explode('><', $user['deny_gid']) : array() );
+ array_walk($allow_cid,'fixacl');
+ array_walk($allow_gid,'fixacl');
+ array_walk($deny_cid,'fixacl');
+ array_walk($deny_gid,'fixacl');
+ }
$o = '';
$o .= '<div id="acl-wrapper">';
@@ -80,11 +100,11 @@ function populate_acl() {
$o .= '<div id="acl-permit-wrapper">';
$o .= '<div id="group_allow_wrapper">';
$o .= '<label id="acl-allow-group-label" for="group_allow" >' . t('Groups') . '</label>';
- $o .= group_select('group_allow','group_allow');
+ $o .= group_select('group_allow','group_allow',$allow_gid);
$o .= '</div>';
$o .= '<div id="contact_allow_wrapper">';
$o .= '<label id="acl-allow-contact-label" for="contact_allow" >' . t('Contacts') . '</label>';
- $o .= contact_select('contact_allow','contact_allow');
+ $o .= contact_select('contact_allow','contact_allow',$allow_cid);
$o .= '</div>';
$o .= '</div>' . "\r\n";
$o .= '<div id="acl-allow-end"></div>' . "\r\n";
@@ -95,11 +115,11 @@ function populate_acl() {
$o .= '<div id="acl-deny-wrapper">';
$o .= '<div id="group_deny_wrapper" >';
$o .= '<label id="acl-deny-group-label" for="group_deny" >' . t('Groups') . '</label>';
- $o .= group_select('group_deny','group_deny');
+ $o .= group_select('group_deny','group_deny', $deny_gid);
$o .= '</div>';
$o .= '<div id="contact_deny_wrapper" >';
$o .= '<label id="acl-deny-contact-label" for="contact_deny" >' . t('Contacts') . '</label>';
- $o .= contact_select('contact_deny','contact_deny');
+ $o .= contact_select('contact_deny','contact_deny', $deny_cid);
$o .= '</div>';
$o .= '</div>' . "\r\n";
$o .= '<div id="acl-deny-end"></div>' . "\r\n";
diff --git a/view/settings.tpl b/view/settings.tpl
index baf117844..658c0b685 100644
--- a/view/settings.tpl
+++ b/view/settings.tpl
@@ -25,6 +25,20 @@ $zoneselect
</div>
<div id="settings-timezone-end" ></div>
+<div id="settings-default-perms" class="settings-default-perms" >
+ <div id="settings-default-perms-menu" onClick="openClose('settings-default-perms-select');" />$permissions</div>
+ <div id="settings-default-perms-menu-end"></div>
+
+ <div id="settings-default-perms-select" style="display: none;" >
+
+ $aclselect
+
+ </div>
+</div>
+<div id="settings-default-perms-end"></div>
+
+
+
<div id="settings-password-wrapper" >
<p id="settings-password-desc" >
Leave password fields blank unless changing
@@ -41,6 +55,10 @@ Leave password fields blank unless changing
<div id="settings-confirm-end" ></div>
+
+
+
+
<div id="settings-submit-wrapper" >
<input type="submit" name="submit" id="settings-submit" value="Submit" />
</div>
diff --git a/view/style.css b/view/style.css
index 4fbe5d20e..6bba5b577 100644
--- a/view/style.css
+++ b/view/style.css
@@ -1326,3 +1326,16 @@ input#dfrn-url {
text-decoration: underline;
cursor: pointer;
}
+#settings-default-perms-menu, #settings-default-perms-menu:visited {
+ color: #8888FF;
+ text-decoration: none;
+ cursor: pointer;
+ margin-top: 15px;
+ margin-bottom: 15px;
+}
+
+#settings-default-perms-menu:hover {
+ color: #0000FF;
+ text-decoration: underline;
+ cursor: pointer;
+}