Changeset 939
- Timestamp:
- 06/06/10 18:09:21 (20 months ago)
- Location:
- trunk/engine
- Files:
-
- 2 modified
-
classes/Engine.class.php (modified) (2 diffs)
-
modules/plugin/Plugin.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/engine/classes/Engine.class.php
r938 r939 431 431 $oConnect=Engine::getInstance()->Database_GetConnect(); 432 432 } 433 $sClass=self::getInstance()->Plugin_GetDelegate('mapper',$sClass); 433 434 return new $sClass($oConnect); 434 435 } … … 583 584 $sPlugin=$aMatch[1]; 584 585 $sInheritClass=$aMatch[2]; 585 $sParentClass=Engine::getInstance()->Plugin_GetParentInherit($sInheritClass); 586 $sParentClass=Engine::getInstance()->Plugin_GetParentInherit($sInheritClass); 586 587 class_alias($sParentClass,$sClassName); 587 588 } -
trunk/engine/modules/plugin/Plugin.class.php
r908 r939 54 54 protected $aDelegates=array( 55 55 'module' => array(), 56 'mapper' => array(), 56 57 'action' => array(), 57 58 'entity' => array(),
