Changeset 4834
- Timestamp:
- 08/27/08 04:20:02 (5 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Record/Generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Record/Generator.php
r4411 r4834 38 38 * @var array $_options an array of plugin specific options 39 39 */ 40 protected $_options = array('generateFiles' => false, 41 'generatePath' => false, 42 'identifier' => false, 43 'table' => false, 44 'pluginTable' => false, 45 'children' => array()); 40 protected $_options = array('generateFiles' => false, 41 'generatePath' => false, 42 'builderOptions' => array(), 43 'identifier' => false, 44 'table' => false, 45 'pluginTable' => false, 46 'children' => array()); 46 47 47 48 /** … … 355 356 if (isset($this->_options['generatePath']) && $this->_options['generatePath']) { 356 357 $builder->setTargetPath($this->_options['generatePath']); 357 358 $builder->setOptions($this->_options['builderOptions']); 358 359 $builder->buildRecord($definition); 359 360 } else {