I am using CakePHP tree to generate my navigation menu . I have generated it successfully. now i need to show them in navigation behavior. I have tried. it is working but after this basic code i dont know what to do after this .. how could i build navigation.. My HomeController.php
My category.ctp <?php foreach($cat_info as $cat_info) { if($cat_info['Category']['parent_id'] == ''){ ?> <ul class="menus"> <li><h4><?php echo $cat_info['Category']['name'] ;?></h4></li> <?php } ?> </ul> <?php } ?> Navigation array sample : Array ( [1] => Array ( [Category] => Array ( [id] => 1 [parent_id] => [lft] => 1 [rght] => 42 [name] => My Categories [url] => http://google.com ) ) [2] => Array ( [Category] => Array ( [id] => 2 [parent_id] => 1 [lft] => 2 [rght] => 17 [name] => Fun [url] => http://google.com ) ) [3] => Array ( [Category] => Array ( [id] => 3 [parent_id] => 2 [lft] => 3 [rght] => 8 [name] => Sport [url] => http://google.com ) ) |
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment