. */ Doctrine::autoload('Doctrine_Access'); /** * Doctrine_Record_Abstract * * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @package Doctrine * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ abstract class Doctrine_Record_Abstract extends Doctrine_Access { /** * addListener * * @param Doctrine_EventListener_Interface|Doctrine_Overloadable $listener * @return Doctrine_Record */ public function addListener($listener, $name = null) { $this->_table->addRecordListener($listener, $name = null); return $this; } /** * getListener * * @return Doctrine_EventListener_Interface|Doctrine_Overloadable */ public function getListener() { return $this->_table->getRecordListener(); } /** * setListener * * @param Doctrine_EventListener_Interface|Doctrine_Overloadable $listener * @return Doctrine_Record */ public function setListener($listener) { $this->_table->setRecordListener($listener); return $this; } /** * index * defines or retrieves an index * if the second parameter is set this method defines an index * if not this method retrieves index named $name * * @param string $name the name of the index * @param array $definition the definition array * @return mixed */ public function index($name, array $definition = array()) { if ( ! $definition) { return $this->_table->getIndex($name); } else { return $this->_table->addIndex($name, $definition); } } public function setAttribute($attr, $value) { $this->_table->setAttribute($attr, $value); } public function setTableName($tableName) { $this->_table->setOption('tableName', $tableName); } public function setInheritanceMap($map) { $this->_table->setOption('inheritanceMap', $map); } /** * attribute * sets or retrieves an option * * @see Doctrine::ATTR_* constants availible attributes * @param mixed $attr * @param mixed $value * @return mixed */ public function attribute($attr, $value) { if ($value == null) { if (is_array($attr)) { foreach ($attr as $k => $v) { $this->_table->setAttribute($k, $v); } } else { return $this->_table->getAttribute($attr); } } else { $this->_table->setAttribute($attr, $value); } } /** * option * sets or retrieves an option * * @see Doctrine_Table::$options availible options * @param mixed $name the name of the option * @param mixed $value options value * @return mixed */ public function option($name, $value = null) { if ($value == null) { if (is_array($name)) { foreach ($name as $k => $v) { $this->_table->setOption($k, $v); } } else { return $this->_table->getOption($name); } } else { $this->_table->setOption($name, $value); } } /** * ownsOne * binds One-to-One composite relation * * @param string $componentName the name of the related component * @param string $options relation options * @see Doctrine_Relation::_$definition * @return Doctrine_Record this object */ public function ownsOne() { $this->_table->bind(func_get_args(), Doctrine_Relation::ONE_COMPOSITE); return $this; } /** * ownsMany * binds One-to-Many / Many-to-Many composite relation * * @param string $componentName the name of the related component * @param string $options relation options * @see Doctrine_Relation::_$definition * @return Doctrine_Record this object */ public function ownsMany() { $this->_table->bind(func_get_args(), Doctrine_Relation::MANY_COMPOSITE); return $this; } /** * hasOne * binds One-to-One aggregate relation * * @param string $componentName the name of the related component * @param string $options relation options * @see Doctrine_Relation::_$definition * @return Doctrine_Record this object */ public function hasOne() { $this->_table->bind(func_get_args(), Doctrine_Relation::ONE_AGGREGATE); return $this; } /** * hasMany * binds One-to-Many / Many-to-Many aggregate relation * * @param string $componentName the name of the related component * @param string $options relation options * @see Doctrine_Relation::_$definition * @return Doctrine_Record this object */ public function hasMany() { $this->_table->bind(func_get_args(), Doctrine_Relation::MANY_AGGREGATE); return $this; } /** * hasColumn * sets a column definition * * @param string $name * @param string $type * @param integer $length * @param mixed $options * @return void */ public function hasColumn($name, $type, $length = 2147483647, $options = "") { $this->_table->setColumn($name, $type, $length, $options); } public function hasColumns(array $definitions) { foreach ($definitions as $name => $options) { $this->hasColumn($name, $options['type'], $options['length'], $options); } } }