Main Page Menus
3 posts by 2 authors in: Forums > CMS Builder
Last Post: January 17, 2008 (RSS)
By grauchut - January 17, 2008
It there a way to change the layout of the main page after you log in. I have a bunch of different sections for each of my pages, It does limit it to 5 then a dropdown menu is present. My problem is it bunches up on the page. Can I possibly make my own page that will work within the program
Glenn Rauchut (Owner) Emergency Designz
Re: [grauchut] Main Page Menus
By Dave - January 17, 2008
The software doesn't have any features that let you do that, but if you don't mind modifying some PHP code it may be possible.
The code that shows the menus in the header is in this file: lib/menus/header.php
If you search for $maxMenus that controls how many menus are shown before they start getting added to the pulldown.
Now, if you wanted to add it to the home menu (the first menu you see when you login, or when you click the CMS logo) that's possible. But not for the faint of heart! :) You'd want to update this file: lib/menus/home.php
You could start with something like this:
Also, another (perhaps simpler) approach would be to just hardcode links into the home.php or header.php files.
Hope that helps!
The code that shows the menus in the header is in this file: lib/menus/header.php
If you search for $maxMenus that controls how many menus are shown before they start getting added to the pulldown.
Now, if you wanted to add it to the home menu (the first menu you see when you login, or when you click the CMS logo) that's possible. But not for the faint of heart! :) You'd want to update this file: lib/menus/home.php
You could start with something like this:
<?php
require_once "lib/menus/header_functions.php";
foreach (getMenuList() as $row) {
$hasMenuAccess = preg_match("/\b(all|{$row['tableName']})\b/i", @$CURRENT_USER['tableAccessList']);
$isHomeMenu = $row['tableName'] == 'home';
$selectedMenu = getFirstDefinedValue(@$APP['selectedMenu'], @$FORM['menu'], 'home');
$isSelected = ($selectedMenu == $row['tableName']);
if (!$CURRENT_USER) { continue; } // don't display menus until user logs in
if (!$hasMenuAccess && !$isHomeMenu) { continue; } // don't display if user doesn't have access
if ($isSelected) {
print "<b><a href='?menu={$row['tableName']}'>" . htmlspecialchars($row['menuName']) ."</a></b><br/>\n";
}
else {
print "<a href='?menu={$row['tableName']}'>" . htmlspecialchars($row['menuName']) ."</a><br/>\n";
}
}
?>
Also, another (perhaps simpler) approach would be to just hardcode links into the home.php or header.php files.
Hope that helps!
Dave Edis - Senior Developer
interactivetools.com
interactivetools.com
Re: [Dave] Main Page Menus
By grauchut - January 17, 2008
once again thanks Dave I will give it a try.
[:)]
[:)]
Glenn Rauchut (Owner) Emergency Designz