blob: b215beba4dda9512e2c2271edbc2c8d06b7b5204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* TExpression class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2011 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Web.UI.WebControls
*/
/**
* TExpression class
*
* TExpression evaluates a PHP expression and renders the result.
* The expression is evaluated during the rendering stage. The expression being
* evaluated can be set via the property {@link setExpression Expression}.
* The context of the expression evaluated is the TExpression object itself.
*
* Note, since TExpression allows evaluation of arbitrary PHP expression,
* make sure {@link setExpression Expression} does not come directly from user input.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TExpression extends TControl
{
/**
* @var string PHP expression to be evaluated
*/
private $_e='';
/**
* @return string the expression to be evaluated
*/
public function getExpression()
{
return $this->_e;
}
/**
* @param string the expression to be evaluated
*/
public function setExpression($value)
{
$this->_e=$value;
}
/**
* Renders the evaluation result of the expression.
* @param THtmlWriter the writer used for the rendering purpose
*/
public function render($writer)
{
if($this->_e!=='')
$writer->write($this->evaluateExpression($this->_e));
}
}
|