summaryrefslogtreecommitdiff
path: root/protected/modules/cms/views/sitecontent/update.php
blob: 5ed7e8da1dd5819f2d89b318ec1eecc855d62929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
$this->breadcrumbs=array(
	Yii::t('CmsModule.cms', 'Sitecontent')=>array('admin'),
	$model->id=>array('view','id'=>$model->id),
	Yii::t('CmsModule.cms', 'Update'),
);

$this->menu=array(
		array(
			'label'=>Yii::t('CmsModule.cms', 'Manage Sitecontent'), 
			'url'=>array('sitecontent/admin')
			),
);
?>

<h2><?php echo Yii::t('CmsModule.cms', 'Update');?> <?php echo $model->title; ?></h2>

<?php echo $this->renderPartial('_form', array('model'=>$model)); ?>