Logo white

Yarik / artbox_vendor

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox_vendor
  • Module.php
  • Testing
    1cd0fb0f
    Yarik authored
    2016-11-06 21:34:58 +0200  
    Browse Code ยป
Module.php 363 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php
    
    namespace artweb\artbox;
    
    class Module extends \yii\base\Module
    {
        public function init()
        {
            parent::init();
            
            $this->modules = [
                'catalog' => [
                    'class' => '\artweb\artbox\modules\catalog\Module',
                ],
            ];
        }
    }