summaryrefslogtreecommitdiff
path: root/protected/modules/cms/views/default/index.php
blob: 327a9e07d49b2c597b18f678da3ea805cd1864c7 (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(
	$this->module->id,
);

$this->menu = array(
		array(
			'label' => Cms::t('Manage Sitecontent'),
			'url' => array('sitecontent/admin')
			),
		array(
			'label' => Cms::t('Create new Sitecontent'),
			'url' => array('sitecontent/create')
			),
);

?>

<h1> <?php echo Yii::t('CmsModule.cms', 'Welcome to your CMS'); ?> </h1>