Blame view

backend/models/Search.php 436 Bytes
3a45f80d   Alexey Boroda   -Added languages,...
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',
                  ]
              );
          }
      }