Lang menu

Ex 1: Text-only

View code
$this->widget('ext.components.language.XLangMenu', array(
    'items'=>array('et'=>'Eesti','en'=>'In English'),
));


Ex 2: Text-only & show active

View code
$this->widget('ext.components.language.XLangMenu', array(
    'items'=>array('et'=>'Eesti','en'=>'In English'),
    'hideActive'=>false,
));


Ex 3: Icons before

View code
$this->widget('ext.components.language.XLangMenu', array(
    'encodeLabel'=>false,
    'items'=>array(
        'et'=>XHtml::imageLabel('et.png','Eesti'),
        'en'=>XHtml::imageLabel('en.png','In English')
    ),
));


Ex 4: Icons after & show active

View code
$this->widget('ext.components.language.XLangMenu', array(
    'encodeLabel'=>false,
    'hideActive'=>false,
    'items'=>array(
        'et'=>XHtml::imageLabel('et.png','Eesti',true),
        'en'=>XHtml::imageLabel('en.png','In English',true)
    ),
));