Logo white

Yarik / artbox_vendor

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox_vendor
  • modules
  • catalog
  • Module.php
  • Testing
    1cd0fb0f
    Yarik authored
    2016-11-06 21:34:58 +0200  
    Browse Code ยป
Module.php 449 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 21 22
<?php
    
    namespace artweb\artbox\modules\catalog;
    
    /**
     * product module definition class
     */
    class Module extends \yii\base\Module
    {
        
        public $types = [];
        
        /**
         * @inheritdoc
         */
        public function init()
        {
            parent::init();
            
            \Yii::configure($this, require( __DIR__ . '/config.php' ));
        }
    }