value =& $value; } /** * Does this property refer to a constant value at compile time? * @return Boolean * @access public */ function isConstant() { return TRUE; } /** * Return this value as a PHP value * @return String * @access public */ function getValue() { return $this->value; } /** * Generate the code to read the data value at run time * Must generate only a valid PHP Expression. * @param CodeWriter * @return void * @access protected */ function generateExpression(&$code) { $code->writePHPLiteral($this->value); } function prepare() { } } ?>