您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ProducerController.php 456B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace producer\controllers;
  3. class ProducerController extends CommonController {
  4. /**
  5. * @inheritdoc
  6. */
  7. public function behaviors() {
  8. return [];
  9. }
  10. public function actions() {
  11. return [
  12. 'error' => [
  13. 'class' => 'yii\web\ErrorAction',
  14. ],
  15. ];
  16. }
  17. public function actionIndex() {
  18. return $this->render('index') ;
  19. }
  20. }
  21. ?>