summaryrefslogtreecommitdiffstats
path: root/usr/local/www/guiconfig.inc
diff options
context:
space:
mode:
authorMatthew Grooms <mgrooms@pfsense.org>2008-09-16 17:41:22 +0000
committerMatthew Grooms <mgrooms@pfsense.org>2008-09-16 17:41:22 +0000
commitb63f2e8b294527f2fd860899fdc2906fddb0c2f7 (patch)
tree6b7f930a4e5d1d53007e22eb73ce914e0974d78d /usr/local/www/guiconfig.inc
parent2e814e0d6935452d0bcc5246336705db5222dcbe (diff)
downloadpfsense-b63f2e8b294527f2fd860899fdc2906fddb0c2f7.zip
pfsense-b63f2e8b294527f2fd860899fdc2906fddb0c2f7.tar.gz
Make it possible for pakages to insert additional tabbed pages into an
existing tab group. This requires that each page in the tab group call add_package_tabs() with the tab group name before display_top_tabs() so pages can be inserted. While far from optimal, this system is really a stop-gap measure until a more intelligent menu/tab system can be implemented. Discussed with Scott on IRC.
Diffstat (limited to 'usr/local/www/guiconfig.inc')
-rwxr-xr-xusr/local/www/guiconfig.inc31
1 files changed, 16 insertions, 15 deletions
diff --git a/usr/local/www/guiconfig.inc b/usr/local/www/guiconfig.inc
index 3015ac5..20bd038 100755
--- a/usr/local/www/guiconfig.inc
+++ b/usr/local/www/guiconfig.inc
@@ -974,22 +974,23 @@ function echo_array($array,$return_me=false){
}
}
-function add_package_tab_hooks($section) {
+function add_package_tabs($tabgroup, & $tab_array) {
global $config, $g;
- if($config['installedpackages']) {
- $tab_array = array();
- foreach($config['installedpackages']['tabs'] as $tab) {
- if($tab['section'] == $section) {
- $tab_array_tmp = array();
- $tab_array_tmp['name'] = $tab['name'];
- $tab_array_tmp['section'] = $tab['section'];
- $tab_array_tmp['configfile'] = $tab['configfile'];
- $tab_array_tmp['url'] = $tab['url'];
- $tab_array[] = $tab_array_tmp;
- }
- }
- return $tab_array;
+
+ if(!is_array($config['installedpackages']))
+ return;
+ if(!is_array($config['installedpackages']['tab']))
+ return;
+
+ foreach($config['installedpackages']['tab'] as $tab) {
+ if ($tab['group'] !== $group)
+ continue;
+ $tab_entry = array();
+ $tab_entry[] = $tab['name'];
+ $tab_entry[] = false;
+ $tab_entry[] = $tab['url'];
+ $tab_array[] = $tab_entry;
}
}
-?> \ No newline at end of file
+?>
OpenPOWER on IntegriCloud