From 0b3724c9b87f891b48c41ad61c1caf3486cc0799 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 13 Feb 2011 23:10:18 +0000 Subject: updates externalpages to 1.8 git-svn-id: http://code.elgg.org/elgg/trunk@8209 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/externalpages/views/default/expages/menu.php | 51 ++++++++++++++++++------ 1 file changed, 39 insertions(+), 12 deletions(-) (limited to 'mod/externalpages/views/default/expages/menu.php') diff --git a/mod/externalpages/views/default/expages/menu.php b/mod/externalpages/views/default/expages/menu.php index d91418065..e471619b8 100644 --- a/mod/externalpages/views/default/expages/menu.php +++ b/mod/externalpages/views/default/expages/menu.php @@ -1,17 +1,44 @@ elgg_echo("expages:$page"), + 'url' => "pg/admin/site/expages?type=$page", + 'selected' => $page == $type, + ); +} + +echo elgg_view('navigation/tabs', array('tabs' => $tabs)); + +return true; + +/** + * Tab navigation + * + * @uses string $vars['type'] horizontal || vertical - Defaults to horizontal + * @uses string $vars['class'] Additional class to add to ul + * @uses array $vars['tabs'] A multi-dimensional array of tab entries in the format array( + * 'title' => string, // Title of link + * 'url' => string, // URL for the link + * 'class' => string // Class of the li element + * 'id' => string, // ID of the li element + * 'selected' => bool // if this li element is currently selected + * 'url_class' => string, // Class to pass to the link + * 'url_id' => string, // ID to pass to the link + * ) + */ ?> -- cgit v1.2.3