From edbe7b218b9127059897ae8f860b1e381c254a00 Mon Sep 17 00:00:00 2001 From: doctrine Date: Tue, 30 May 2006 07:34:58 +0000 Subject: [PATCH] Removed file/folder --- classes/ConfigurableComponent.class.php | 64 ------------------------- 1 file changed, 64 deletions(-) delete mode 100644 classes/ConfigurableComponent.class.php diff --git a/classes/ConfigurableComponent.class.php b/classes/ConfigurableComponent.class.php deleted file mode 100644 index ae9ce292b..000000000 --- a/classes/ConfigurableComponent.class.php +++ /dev/null @@ -1,64 +0,0 @@ -getComponent()->setTableName($name); - } - /** - * setInheritanceMap - * @param array $inheritanceMap - * @return void - */ - final public function setInheritanceMap(array $inheritanceMap) { - $this->getComponent()->setInheritanceMap($inheritanceMap); - } - /** - * setAttribute - * @param integer $attribute - * @param mixed $value - * @see Doctrine::ATTR_* constants - * @return void - */ - final public function setAttribute($attribute,$value) { - $this->getComponent()->setAttribute($attribute,$value); - } - /** - * @param string $objTableName - * @param string $fkField - * @return void - */ - final public function ownsOne($componentName,$foreignKey) { - $this->getComponent()->bind($componentName,$foreignKey,Doctrine_Table::ONE_COMPOSITE); - } - /** - * @param string $objTableName - * @param string $fkField - * @return void - */ - final public function ownsMany($componentName,$foreignKey) { - $this->getComponent()->bind($componentName,$foreignKey,Doctrine_Table::MANY_COMPOSITE); - } - /** - * @param string $objTableName - * @param string $fkField - * @return void - */ - final public function hasOne($componentName,$foreignKey) { - $this->getComponent()->bind($componentName,$foreignKey,Doctrine_Table::ONE_AGGREGATE); - } - /** - * @param string $objTableName - * @param string $fkField - * @return void - */ - final public function hasMany($componentName,$foreignKey) { - $this->getComponent()->bind($componentName,$foreignKey,Doctrine_Table::MANY_AGGREGATE); - } - - abstract public function getComponent(); -} -?>