. */ Doctrine::autoload('Doctrine_Record_Abstract'); /** * Doctrine_Template * * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ class Doctrine_Template extends Doctrine_Record_Abstract { /** * @param Doctrine_Table $_table reference to associated Doctrine_Table instance */ protected $_table; /** * constructor, creates tree with reference to table and any options * * @param Doctrine_Table $_table the table object this Template belongs to */ public function __construct(Doctrine_Table $table) { $this->_table = $table; } /** * getTable * returns the associated table object * * @return Doctrine_Table the associated table object */ public function getTable() { return $this->_table; } public function setUp() { } public function setTableDefinition() { } }