| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Db
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * require other test files needed, this will
- * ensure that Zend_Loader::loadClass is not called
- */
- require_once 'TableBugs.php';
- require_once 'TableBugsProductsCustom.php';
- require_once 'TableAccountsCustom.php';
- /**
- * @category Zend
- * @package Zend_Db
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class My_ZendDbTable_TableBugsCustom extends My_ZendDbTable_TableBugs
- {
- public $isMetadataFromCache = false;
- protected $_metadataCacheInClass = false;
- protected $_rowClass = 'My_ZendDbTable_Row_TestMyRow';
- protected $_rowsetClass = 'My_ZendDbTable_Rowset_TestMyRowset';
- protected $_dependentTables = array('My_ZendDbTable_TableBugsProductsCustom');
- protected $_referenceMap = array(
- 'Reporter' => array(
- 'columns' => array('reported_by'),
- 'refTableClass' => 'My_ZendDbTable_TableAccountsCustom',
- 'refColumns' => array('account_name'),
- 'onDelete' => self::CASCADE,
- 'onUpdate' => self::CASCADE
- ),
- 'Engineer' => array(
- 'columns' => 'assigned_to',
- 'refTableClass' => 'My_ZendDbTable_TableAccountsCustom',
- 'refColumns' => 'account_name'
- ),
- 'Verifier' => array(
- 'columns' => 'verified_by',
- 'refTableClass' => 'My_ZendDbTable_TableAccountsCustom',
- 'refColumns' => 'account_name'
- )
- );
- /**
- * Public proxy to setup functionality
- *
- * @return void
- */
- public function setup()
- {
- $this->_setup();
- }
- /**
- * Turnkey for initialization of a table object.
- *
- * @return void
- */
- protected function _setup()
- {
- $this->_setupDatabaseAdapter();
- $this->_setupTableName();
- $this->isMetadataFromCache = $this->_setupMetadata();
- $this->_setupPrimaryKey();
- }
- }
|