VERSION-0.9.4.2 Database switch in order to disable the database adapter completly, minor bugfix in the postgress database adapter concerning the configuration settings. Added gitignore file
This commit is contained in:
@@ -13,9 +13,16 @@ class Model extends Table
|
||||
|
||||
public function __construct($argv)
|
||||
{
|
||||
parent::__construct($argv);
|
||||
$this->createOutFolder();
|
||||
$this->createClassFiles();
|
||||
if(Config::getInstance()->getConfig()[IMysql::SETTINGS_DATABASE][IMysql::PLACE_IS_ACTIVE])
|
||||
{
|
||||
parent::__construct($argv);
|
||||
$this->createOutFolder();
|
||||
$this->createClassFiles();
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private function createOutFolder()
|
||||
|
||||
Reference in New Issue
Block a user