Logo white

Administrator / test_3

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_3
  • frontend
  • models
  • Front.php
  • firs page
    c8a3b6d1
    Administrator authored
    2016-01-25 16:56:47 +0200  
    Browse Code »
Front.php 373 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?php
namespace frontend\models;

use common\models\User;
use common\models\Menu;
use yii\base\Model;
use Yii;

/**
 * Signup form
 */
class Front extends Model
{ 
    // страница

    var $meta_title;
    var $meta_desc;
    var $title;
    var $text;

    public function actionMenu($location)
    { 
        return (new Menu)->getMenuList($location);  
    } 
}