From 70783db631eb594d0fcdc08fe9643a47cee72ac7 Mon Sep 17 00:00:00 2001 From: "Duck (Jakob Munih)" Date: Wed, 25 Feb 2009 12:18:14 +0100 Subject: [PATCH] remove tabs --- folks/templates/edit/footer.php | 3 +++ folks/templates/edit/header.php | 51 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 folks/templates/edit/footer.php create mode 100644 folks/templates/edit/header.php diff --git a/folks/templates/edit/footer.php b/folks/templates/edit/footer.php new file mode 100644 index 000000000..449d4a9c7 --- /dev/null +++ b/folks/templates/edit/footer.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/folks/templates/edit/header.php b/folks/templates/edit/header.php new file mode 100644 index 000000000..5600d16bc --- /dev/null +++ b/folks/templates/edit/header.php @@ -0,0 +1,51 @@ +

+ + + +
+ + +getOnlineUsers(); +if ($online instanceof PEAR_Error) { + return $online; +} + +// Get groups +$groups = $friends->getGroups(); +if ($groups instanceof PEAR_Error) { + $notification->push($groups); + $groups = array(); +} + +echo '
' . _("Add") . ''; +echo '
' . _("Invite") . ''; +echo '
' . _("All") . ''; + +foreach ($groups as $group_id => $group_name) { + echo '
' . $group_name . ''; +} + +echo '
' . _("Might know") . ''; +echo '
' . _("Wainting for") . ''; +echo '
' . _("Wainting from") . ''; +echo '
' . _("I am friend of") . ''; +echo '
' . _("Blacklist") . ''; + +?> +
+ +
+
+ +

getImageDir('horde')) . ' ' . _("Feeds") ?>

+ + + + + +
+ +
\ No newline at end of file -- 2.11.0