. */ Doctrine::autoload('Doctrine_Schema_Object'); /** * @package Doctrine * @url http://www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Jukka Hassinen * @version $Id$ */ /** * class Doctrine_Schema_Table * Holds information on a database table * @package Doctrine * @category Object Relational Mapping * @link www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ class Doctrine_Schema_Table extends Doctrine_Schema_Object implements Countable, IteratorAggregate { protected $definition = array('name' => '', 'check' => '', 'charset' => '', 'description' => ''); /** * Relations this table has with others. An array of Doctrine_Schema_Relation */ private $relations = array(); /** * * @return bool * @access public */ public function isValid( ) { } /** * returns an array of Doctrine_Schema_Column objects * * @return array */ public function getColumns() { return $this->children; } /** * @return Doctrine_Schema_Column|false */ public function getColumn($name) { if( ! isset($this->children[$name])) return false; return $this->children[$name]; } /** * * @param Doctrine_Schema_Column column * @return Doctrine_Schema_Table * @access public */ public function addColumn(Doctrine_Schema_Column $column) { $name = $column->get('name'); $this->children[$name] = $column; return $this; } /** * Adds a relation between a local column and a 2nd table / column * * @param Doctrine_Schema_Relation Relation * */ public function setRelation(Doctrine_Schema_Relation $relation){ $this->relations[] = $relation; } /** * Return all the relations this table has with others * * @return array Array of Doctrine_Schema_Relation */ public function getRelations(){ return $this->relations; } }