Blame view

common/modules/rubrication/Module.php 621 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
  <?php

5c2eb7c8   Yarik   Big commit almost...
2
3
4
      

      namespace common\modules\rubrication;

      

d8c1a2e0   Yarik   Big commit artbox
5
      /**

5c2eb7c8   Yarik   Big commit almost...
6
       * rubrication module definition class

d8c1a2e0   Yarik   Big commit artbox
7
       */

5c2eb7c8   Yarik   Big commit almost...
8
      class Module extends \yii\base\Module

d8c1a2e0   Yarik   Big commit artbox
9
      {

5c2eb7c8   Yarik   Big commit almost...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
          

          public $types = [];

          

          /**

           * @inheritdoc

           */

          public $controllerNamespace = 'common\modules\rubrication\controllers';

          

          public $defaultRoute = 'rubrication/index';

          

          public $component = 'rubrication';

          

          /**

           * @inheritdoc

           */

          public function init()

          {

              parent::init();

          }

d8c1a2e0   Yarik   Big commit artbox
29
      }