mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 14:54:04 +01:00
32 lines
665 B
PHP
32 lines
665 B
PHP
<?php
|
|
|
|
class {ClassName} extends CController
|
|
{{Actions}
|
|
// -----------------------------------------------------------
|
|
// Uncomment the following methods and override them if needed
|
|
/*
|
|
public function filters()
|
|
{
|
|
// return the filter configuration for this controller, e.g.:
|
|
return array(
|
|
'inlineFilterName',
|
|
array(
|
|
'class'=>'path.to.FilterClass',
|
|
'propertyName'=>'propertyValue',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function actions()
|
|
{
|
|
// return external action classes, e.g.:
|
|
return array(
|
|
'action1'=>'path.to.ActionClass',
|
|
'action2'=>array(
|
|
'class'=>'path.to.AnotherActionClass',
|
|
'propertyName'=>'propertyValue',
|
|
),
|
|
);
|
|
}
|
|
*/
|
|
} |