- Timestamp:
- 09/25/08 12:30:33 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/src/database/AgaviDoctrineDatabase.class.php
r2732 r2945 22 22 * @author Ross Lawley <ross.lawley@gmail.com> 23 23 * @author David Zülke <dz@bitxtender.com> 24 * @author TANAKA Koichi <tanaka@ensites.com> 24 25 * @copyright Authors 25 26 * @copyright The Agavi Project … … 74 75 * @author David Zülke <dz@bitxtender.com> 75 76 * @author Ross Lawley <ross.lawley@gmail.com> 77 * @author TANAKA Koichi <tanaka@ensites.com> 76 78 * @since 0.11.0 77 79 */ … … 138 140 } 139 141 142 foreach((array)$this->getParameter('impls', array()) as $templateName => $className) { 143 $this->connection->setImpl($templateName, $className); 144 } 145 146 foreach((array)$this->getParameter('manager_impls', array()) as $templateName => $className) { 147 $this->doctrineManager->setImpl($templateName, $className); 148 } 149 140 150 Doctrine::loadModels($this->getParameter('load_models')); 141 151

