| 1 | <?php |
||
| 16 | class VersionController extends \hidev\base\Controller |
||
| 17 | { |
||
| 18 | public $own; |
||
| 19 | |||
| 20 | public $defaultAction = 'show'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Show current version. |
||
| 24 | * @param string $release |
||
| 25 | */ |
||
| 26 | public function actionShow($release = null) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Update version. |
||
| 38 | * @param string $release |
||
| 39 | */ |
||
| 40 | public function actionUpdate($release = null) |
||
| 44 | |||
| 45 | public function getComponent() |
||
| 49 | } |
||
| 50 |