mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-06 08:14:21 +01:00
15 lines
389 B
PHP
15 lines
389 B
PHP
<?php
|
|
|
|
class ControllerGenerator extends CCodeGenerator
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
$this->generate('gii.generators.controller.ControllerCode');
|
|
}
|
|
|
|
public function getSuccessMessage($model)
|
|
{
|
|
$link=CHtml::link('try it now', Yii::app()->createUrl($model->controller), array('target'=>'_blank'));
|
|
return "The controller has been generated successfully. You may $link.";
|
|
}
|
|
} |