StandardController.php 243 B

12345678910111213141516
  1. <?php
  2. namespace backend\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. class StandardController extends Controller
  6. {
  7. public $layout = false;
  8. public function actionIndex(){
  9. return $this->render($this->action->id);
  10. }
  11. }