Source for file TableFeature.php
Documentation is available at TableFeature.php
* The miTableFeature class
* @copyright Copyright (c) 2003-2006 Mirchev Ideas Ltd. All rights reserved.
* miTableFeature base class
* Each table feature subclasses this class
* @copyright Copyright (c) 2003-2006 Mirchev Ideas Ltd. All rights reserved.
* @abstract the subclasses must implement getValues()
* A reference to the miTable object associated with this table feature
* Constructs a table feature
$table->addTableFeature($this);
* Returns associative array with params that save the feature state
* Returns the value of a named state variable
* Returns the default value if the state variable is not set
* @param mixed $defaultValue
$state =
$this->_table->getState();
return isset
($state[$name]) ?
$state[$name] :
$defaultValue;
Documentation generated on Thu, 08 May 2008 16:57:43 +0300 by phpDocumentor 1.4.1