blob: f3470c9ec1233ce0f229dacf12e90122217fd90c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<h1>Welcome to Yii Code Generator!</h1>
<p>
You may use the following generators to quickly build up your Yii application:
</p>
<ul>
<?php foreach($this->module->controllerMap as $name=>$config): ?>
<li><?php echo CHtml::link(ucwords(CHtml::encode($name).' generator'),array('/gii/'.$name));?></li>
<?php endforeach; ?>
</ul>
|