mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-06 00:04:07 +01:00
12 lines
352 B
PHP
12 lines
352 B
PHP
<?php
|
|
|
|
class ControllerGenerator extends CCodeGenerator
|
|
{
|
|
public $codeModel='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.";
|
|
}
|
|
} |