summaryrefslogtreecommitdiff
path: root/protected/modules/cms/views/sitecontent/create.php
blob: 88ff27ef99e2d183ff5f8687320cd00de1907ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$this->breadcrumbs=array(
	Yii::t('CmsModule.cms', 'Sitecontent')=>array('admin'),
	Yii::t('CmsModule.cms', 'Create'),
);

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

<h2><?php echo Yii::t('CmsModule.cms', 'Create new Sitecontent'); ?></h2>

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