}
$row[$h['name']] = $str;
}
- $this->LinksRow($row, $o);
+ $this->linksRow(&$row, $o);
return $row;
}
- protected function LinksRow($row, $o){
+ protected function linksRow(&$row, $o){
if (method_exists($this,'list_display_links')){
$links_display = $this->list_display_links();
}else{
const IDENTIFIER_COMPOSITE = 4;
const MODEL_LOADING_AGGRESSIVE = 1;
const MODEL_LOADING_CONSERVATIVE= 2;
+
+ const BASE_CLASSES_DIRECTORY = '_generated';
private static $_loadedModelFiles = array();
{
$loadedModels = array();
try{
- $it = new DirectoryIterator($directory.DIRECTORY_SEPARATOR.'_generated');
+ $it = new DirectoryIterator($directory.DIRECTORY_SEPARATOR.IPF_ORM::BASE_CLASSES_DIRECTORY);
}catch(RuntimeException $e){
return $loadedModels;
}