Logo white

Anastasia / energyforum

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • energyforum
  • backend
  • models
  • Search.php
  • Добавлен експорт в excel
    8c54b055
    alex authored
    2018-09-13 11:38:38 +0300  
    Browse Code »
Search.php 436 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
<?php
    
    namespace backend\models;
    
    use artbox\core\admin\models\Search as CoreSearch;
    
    class Search extends CoreSearch
    {
        public function attributeLabels()
        {
            $model = \Yii::createObject($this->model);
            
            return call_user_func(
                [
                    $model,
                    'attributeLabels',
                ]
            );
        }
    }