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

[eluser]überfuzz[/eluser]
First of all you need to set up a sql query that fetches al the links, names, parent_id, etc you need. Decide if you wanna array or an object returned.
Code:
//in the controller, might be a MY_Controller so you'll be able to use it throughout the site.
$menu = $this->menu_model->get_menu();

If you need to alter $menu you could tinker with it in the controller. Now you have to decide whether you want to render the menu in the view or in a library. I often go with a library('html_render').
Code:
$this->data['menu_html'] = $this->html_render->make_menu($menu);
(Feels like a nice way of doing a thing I haven't figure out how to do in a strict mvc way.)

Feel free to ask questions as you go along.


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