|
|
@@ -22,7 +22,7 @@ class SchemaReaderProcess {
|
|
|
$this->_version = $config->get('version', 'CONFIG');
|
|
|
$this->_date = $config->get('date', 'CONFIG');
|
|
|
|
|
|
- if('1' == V::get('DBG_SCH', '', $_GET)){echo'<pre style="max-height:200px;overflow:auto;border:1px solid red;text-align:left;">$configData (' . __CLASS__ . '::' . __FUNCTION__ . ':' . __LINE__ . '): ';print_r($configData);echo'</pre>';}
|
|
|
+ DBG::_('DBG_SCH', '1', "configData", $configData, __CLASS__, __FUNCTION__, __LINE__ );
|
|
|
$configSections = array_keys($configData);
|
|
|
if (in_array('ACCESS', $configSections)) {
|
|
|
if (array_key_exists('HAS_ACCESS', $configData['ACCESS'])) {
|
|
|
@@ -49,7 +49,7 @@ class SchemaReaderProcess {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if('1' == V::get('DBG_SCH', '', $_GET)){echo'<pre style="max-height:200px;overflow:auto;border:1px solid red;text-align:left;">$this->_steps:1 (' . __CLASS__ . '::' . __FUNCTION__ . ':' . __LINE__ . '): ';print_r($this->_steps);echo'</pre>';}
|
|
|
+ DBG::_('DBG_SCH', '1', "_steps:1", $this->_steps, __CLASS__, __FUNCTION__, __LINE__ );
|
|
|
|
|
|
foreach ($configSections as $section) {
|
|
|
if ('STEP' == substr($section, 0, 4)) {
|
|
|
@@ -66,7 +66,7 @@ class SchemaReaderProcess {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if('1' == V::get('DBG_SCH', '', $_GET)){echo'<pre style="max-height:200px;overflow:auto;border:1px solid red;text-align:left;">$this->_steps:2 (' . __CLASS__ . '::' . __FUNCTION__ . ':' . __LINE__ . '): ';print_r($this->_steps);echo'</pre>';}
|
|
|
+ DBG::_('DBG_SCH', '1', "_steps:2", $this->_steps, __CLASS__, __FUNCTION__, __LINE__ );
|
|
|
|
|
|
$this->_resourcesTable = array();
|
|
|
foreach ($this->_steps as $step) {
|
|
|
@@ -79,7 +79,7 @@ class SchemaReaderProcess {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if('1' == V::get('DBG_SCH', '', $_GET)){echo'<pre style="max-height:200px;overflow:auto;border:1px solid red;text-align:left;">this->_resourcesTable (' . __CLASS__ . '::' . __FUNCTION__ . ':' . __LINE__ . '): ';print_r($this->_resourcesTable);echo'</pre>';}
|
|
|
+ DBG::_('DBG_SCH', '1', "_resourcesTable", $this->_resourcesTable, __CLASS__, __FUNCTION__, __LINE__ );
|
|
|
|
|
|
return true;
|
|
|
}
|