aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--images/spencil.gifbin0 -> 497 bytes
-rw-r--r--include/group.php4
-rw-r--r--mod/network.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/images/spencil.gif b/images/spencil.gif
new file mode 100644
index 000000000..0a2551ac0
--- /dev/null
+++ b/images/spencil.gif
Binary files differ
diff --git a/include/group.php b/include/group.php
index 5001cf53e..065c2241f 100644
--- a/include/group.php
+++ b/include/group.php
@@ -135,7 +135,7 @@ function group_public_members($gid) {
-function group_side($every="contacts",$each="group") {
+function group_side($every="contacts",$each="group",$edit = false) {
$o = '';
@@ -165,7 +165,7 @@ EOT;
);
if(count($r)) {
foreach($r as $rr)
- $o .= " <li class=\"sidebar-group-li\"><a href=\"$each/{$rr['id']}\">{$rr['name']}</a></li>\r\n";
+ $o .= ' <li class="sidebar-group-li">' . (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit') . "\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "") . "<a href=\"$each/{$rr['id']}\">{$rr['name']}</a></li>\r\n";
}
$o .= " </ul>\r\n </div>\r\n</div>";
diff --git a/mod/network.php b/mod/network.php
index 35b6a299b..f0a071cbf 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -21,7 +21,7 @@ function network_init(&$a) {
$a->page['aside'] .= '</div>';
- $a->page['aside'] .= group_side('network','network');
+ $a->page['aside'] .= group_side('network','network',true);
}