Guest User

Untitled

a guest
Sep 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?php
  2. Class View_Page extends Kostache {
  3.  
  4. // Decides which nav item is selected
  5. protected $_selected_top_nav_item;
  6.  
  7. public function top_nav()
  8. {
  9. // Return the nav array with url and selected status
  10. return array(
  11. array(
  12. 'url' => Route::url('home', ...), // Generate the url using reverse routing
  13. 'text' => 'Home',
  14. 'selected' => $this->_selected_top_nav_item === 'home',
  15. ),
  16. array(
  17. 'url' => Route::url('browse', ...), // Generate the url using reverse routing
  18. 'text' => 'Browse',
  19. 'selected' => $this->_selected_top_nav_item === 'browse',
  20. ),
  21. );
  22. }
  23. }
Add Comment
Please, Sign In to add comment