Welcome Guest, Not a member yet? Register   Sign In
Creating a menu from a categories table
#7

[eluser]kikz4life[/eluser]
@skunkbad

did that, parent -> child
btw- you can also sort the order of the parent and child by adding another field also a field for adding the link to the child page.
for the parent = #
for child = controller name

category_id category_name parent_id sort link
1 Examples 0 1 #
2 Stuff 0 2 #
3 Widgets 1 1 cont_name
4 Shiny 3 1 cont_name2
5 Nothing 1 2 cont_name3
so on.....

Code:
Code:
if (isset($navs)) {
    foreach ($navs as $parent)
    {
        $parent_id = "nav_" . $parent['row']['category_id'];
                 echo "link" ....
                   ..........
                   foreach ($parent['child'] as $module)
        {
            $module_id = "nav_" . $module['row']['category_id'];
            $module_link = "#";
            if ($module['row']['link']!="#") {
                $module_link = $module['row']['link'];
                ......
            }
                        echo "link"
                           .................
                           ...........
Just pointed of what ive done. Hope this help..
-Dean


Messages In This Thread
Creating a menu from a categories table - by El Forum - 12-03-2009, 10:55 AM
Creating a menu from a categories table - by El Forum - 12-03-2009, 11:53 AM
Creating a menu from a categories table - by El Forum - 12-03-2009, 12:33 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 02:27 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 04:45 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 06:07 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 06:50 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 07:06 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 07:13 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 08:33 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 09:49 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 10:00 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 11:58 PM
Creating a menu from a categories table - by El Forum - 12-04-2009, 12:10 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 01:30 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:03 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:14 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:43 AM
Creating a menu from a categories table - by El Forum - 06-16-2010, 04:35 AM
Creating a menu from a categories table - by El Forum - 06-16-2010, 03:02 PM
Creating a menu from a categories table - by El Forum - 06-17-2010, 04:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB