Advertisement
utan

photo_list_widget.php

Dec 24th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. $menuItems['latest'] = array(
  2.             'label' => $lang->text('photo', 'menu_latest'),
  3.             'id' => 'photo-widget-menu-latest',
  4.             'contId' => 'photo-widget-latest'/*,
  5.             'active' => true*/
  6.         );
  7.  
  8.         if ( $featured )
  9.         {
  10.             $menuItems['featured'] = array(
  11.                 'label' => $lang->text('photo', 'menu_featured'),
  12.                 'id' => 'photo-widget-menu-featured',
  13.                 'contId' => 'photo-widget-featured',
  14.             );
  15.         }
  16.  
  17.         $menuItems['toprated'] = array(
  18.             'label' => $lang->text('photo', 'menu_toprated'),
  19.             'id' => 'photo-widget-menu-top-rated',
  20.             'contId' => 'photo-widget-top-rated',
  21.             'active' => true
  22.         );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement