summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-10-30 02:32:04 +0100
committerSem <sembrestels@riseup.net>2012-10-30 02:32:04 +0100
commitb4ad2436f397f5f9f155a723f4a07bb3cc7eb32a (patch)
treebd348ce6d564188a6de8cd0bbbb55a8a26c77b65
parentd2162850441b37eba7b83b47c2afa2b4184274d3 (diff)
downloadsaravea_theme-b4ad2436f397f5f9f155a723f4a07bb3cc7eb32a.tar.gz
saravea_theme-b4ad2436f397f5f9f155a723f4a07bb3cc7eb32a.tar.bz2
Added groups icon in topbar.
-rw-r--r--_graphics/elgg_sprites.pngbin26601 -> 27129 bytes
-rw-r--r--start.php12
-rw-r--r--views/default/css/elements/icons.php6
3 files changed, 17 insertions, 1 deletions
diff --git a/_graphics/elgg_sprites.png b/_graphics/elgg_sprites.png
index b8b9b2b..461799c 100644
--- a/_graphics/elgg_sprites.png
+++ b/_graphics/elgg_sprites.png
Binary files differ
diff --git a/start.php b/start.php
index eb25a82..ae5f3d6 100644
--- a/start.php
+++ b/start.php
@@ -29,7 +29,17 @@ function n1_theme_init() {
function n1_theme_topbar_menu($hook, $type, $returnvalue, $params){
$user = elgg_get_logged_in_user_entity();
-
+
+ if (elgg_is_active_plugin('groups')) {
+ $returnvalue[] = ElggMenuItem::factory(array(
+ 'name' => 'groups',
+ 'href' => $user ? "groups/member/$user->username" : "groups/all",
+ 'text' => elgg_view_icon('groups'),
+ 'title' => elgg_echo('groups'),
+ 'priority' => 500,
+ ));
+ }
+
if (elgg_is_admin_logged_in()) {
$returnvalue[] = ElggMenuItem::factory(array(
'name' => 'administration',
diff --git a/views/default/css/elements/icons.php b/views/default/css/elements/icons.php
index ba62a66..2d6db62 100644
--- a/views/default/css/elements/icons.php
+++ b/views/default/css/elements/icons.php
@@ -281,6 +281,12 @@
.elgg-icon-logout:hover, .elgg-menu-item-logout:hover a {
background-position: 0 -1542px;
}
+.elgg-icon-groups {
+ background-position: 0 -1577px;
+}
+.elgg-icon-groups:hover {
+ background-position: 0 -1560px;
+}
.elgg-avatar > .elgg-icon-hover-menu {