Blame view

backend/modules/menu/Menu.php 394 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  
  namespace backend\modules\menu;
  
  /**
   * Class Menu
   *
   * @package backend\modules\menu
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   */
  class Menu extends \thread\modules\menu\Menu
  {
      public $itemOnPage = 20;
  
      /**
       * Шлях до файлу конфігурації
       * @var string
       */
      public $configPath = __DIR__ . '/config.php';
  }