Abstract.php

00001 <?php
00009 abstract class Dsao_Db_Table_Abstract extends Zend_Db_Table_Abstract
00010 {
00014   protected $_dependentTables = array();
00015 
00019   protected $_name = '';
00020 
00024   protected $_primary  = 'id';
00025 
00029   protected $_rowClass = 'Zend_Db_Table_Row';
00030 
00034   protected $_rowsetClass = 'Zend_Db_Table_Rowset';
00035 
00041   protected $_sequence = true;
00042 
00046   protected $_referenceMap = array();
00047 
00058   public function select($withFromPart = false)
00059   {
00060     $select = new Dsao_Db_Table_Select($this);
00061 
00062     if ($withFromPart == true)
00063     {
00064       $select->from($this->info(self::NAME), Zend_Db_Table_Select::SQL_WILDCARD, $this->info(self::SCHEMA));
00065     }
00066 
00067     return $select;
00068   }
00069 }

Erzeugt am Fri Sep 18 19:04:11 2009 für DSA online - Morgendaemmerung von  doxygen 1.5.7.1