Skip to content

Instantly share code, notes, and snippets.

@ertankayalar
Created June 22, 2013 14:06
Show Gist options
  • Save ertankayalar/5840987 to your computer and use it in GitHub Desktop.
Save ertankayalar/5840987 to your computer and use it in GitHub Desktop.
yii breadcrumbs menu
<?php
$this->breadcrumbs=array(
Yii::t('holiday', 'Adverts'),
);
veya
$this->breadcrumbs=array(
'Menu Items'=>array('index'),
'Create',
);
$this->menu=array(
array('label'=> Yii::t('holiday','New Advert'), 'url'=>array('create')),
array('label'=> Yii::t('holiday', 'Manage Adverts'), 'url'=>array('admin')),
array('label'=> Yii::t('holiday', 'My Contacts'), 'url' => array('ownerContact/index')),
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment