diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-14 21:41:44 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-14 21:41:44 -0300 |
commit | beaab428eb8b6e19ca6d413249f6307100d9b853 (patch) | |
tree | b7c2b617c19ee5e1b133e8029b80bb52c1bb8ec8 /views/default/output | |
download | elgg-beaab428eb8b6e19ca6d413249f6307100d9b853.tar.gz elgg-beaab428eb8b6e19ca6d413249f6307100d9b853.tar.bz2 |
Squashed 'mod/saravea_theme/' content from commit daab1e0
git-subtree-dir: mod/saravea_theme
git-subtree-split: daab1e0a1d564efeb637ecb2ce27ade44f45ac64
Diffstat (limited to 'views/default/output')
-rw-r--r-- | views/default/output/access.php | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/views/default/output/access.php b/views/default/output/access.php new file mode 100644 index 000000000..fdb8fe1a1 --- /dev/null +++ b/views/default/output/access.php @@ -0,0 +1,53 @@ +<?php +/** + * Displays HTML for entity access levels. + * Requires an entity because some special logic for containers is used. + * + * @uses int $vars['entity'] - The entity whose access ID to display. + */ + +//sort out the access level for display +if (isset($vars['entity']) && elgg_instanceof($vars['entity'])) { + $access_id = $vars['entity']->access_id; + $access_class = 'elgg-access'; + $access_id_string = get_readable_access_level($access_id); + $access_id_string = htmlentities($access_id_string, ENT_QUOTES, 'UTF-8'); + + // if within a group or shared access collection display group name and open/closed membership status + // @todo have a better way to do this instead of checking against subtype / class. + $container = $vars['entity']->getContainerEntity(); + + if ($container && $container instanceof ElggGroup) { + // we decided to show that the item is in a group, rather than its actual access level + // not required. Group ACLs are prepended with "Group: " when written. + //$access_id_string = elgg_echo('groups:group') . $container->name; + $membership = $container->membership; + + if ($membership == ACCESS_PUBLIC) { + $access_class .= ' elgg-access-group-open'; + } else { + $access_class .= ' elgg-access-group-closed'; + } + } + + switch ($access_id) { + case ACCESS_PRIVATE: + $access_class .= ' elgg-access-private'; + break; + case ACCESS_FRIENDS: + $access_class .= ' elgg-access-friends'; + break; + case ACCESS_LOGGED_IN: + $access_class .= ' elgg-access-loggedin'; + break; + case ACCESS_PUBLIC: + $access_class .= ' elgg-access-public'; + break; + default: + $access_class .= ' elgg-access-group'; + } + + $help_text = elgg_echo('access:help'); + + echo "<span title=\"$help_text\" class=\"$access_class\">$access_id_string</span>"; +} |