public function __construct(TableInfo $tableInfo)
 {
     parent::__construct($tableInfo);
     $this->_setEnable("getcontrol");
     $this->check_dir('Controller');
 }
Example #2
0
 /**
  * LangFileBuilder constructor.
  * @param $tableInfo
  */
 public function __construct(TableInfo $tableInfo)
 {
     parent::__construct($tableInfo);
     $this->_setEnable("getlanguage");
     $this->check_dir('lang');
 }
Example #3
0
 public function create()
 {
     $this->_check_dbvc();
     $builder = new BaseFileBuilder('VCFiles');
     echo "{$builder->builder()}  be created.";
 }
Example #4
0
 /**
  * HtmlFileBuilder constructor.
  * @param $tableInfo
  */
 public function __construct(TableInfo $tableInfo)
 {
     parent::__construct($tableInfo);
     $this->_setEnable("gethtml");
     $this->check_dir('html');
 }