Skip to content

yiiext/iconized-menu-widget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Iconized menu

Allows you to create a menu with the corresponding favicon on the left of each item.

[php]
<?$this->widget('ext.yiiext.widgets.iconizedMenu.EIconizedMenu',array(
    // Turns off Yandex sprites usage and allows to use custom iconizerBaseUrl
    // 'useSprites' => false,
    'items'=>array(
        array('label'=>'Yii Framework', 'url'=> 'http://yiiframework.com/'),
        array('label'=>'RMCreative', 'url'=> 'http://rmcreative.ru/'),
        array('label'=>'Twitter', 'url'=> 'http://twitter.com/'),
    ),
))?>