Blame view

frontend/models/Front.php 275 Bytes
19423060   andryeyev   + 1-уровневое мен...
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
  namespace frontend\models;
  
  use common\models\User;
  use common\models\Menu;
  use yii\base\Model;
  use Yii;
  
  /**
   * Signup form
   */
  class Front extends Model
  { 
bb7d15c5   andryeyev   Итерация 3 (Templ...
14
      public function actionMenu($location)
19423060   andryeyev   + 1-уровневое мен...
15
      { 
bb7d15c5   andryeyev   Итерация 3 (Templ...
16
17
          return (new Menu)->getMenuList($location);  
      } 
19423060   andryeyev   + 1-уровневое мен...
18
  }