| 1 | <?php |
||
| 11 | class Create |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Create app model. |
||
| 15 | * @param string $name |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function actionModel($name) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Create app controller. |
||
| 27 | * @param string $name |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function actionController($name) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Create app active record table relation. |
||
| 39 | * @param string $name |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function actionAr($name) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Create widget main class skeleton. |
||
| 51 | * @param string $name |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function actionWidget($name) |
||
| 61 | } |