選択できるのは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. ?>