blob: b73d4ef07fe69412bdf58dca3bbc827b9bc4c17e (
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
 | <?php
class TSqlMapSelectKey extends TSqlMapStatement
{
	private $_type = 'post';
	private $_property = '';
	public function getType(){ return $this->_type; }
	public function setType($value){ $this->_type = $value; }
	public function getProperty(){ return $this->_property; }
	public function setProperty($value){ $this->_property = $value; }
	public function setExtends($value)
	{
		throw new TSqlMapConfigurationException(
				'sqlmap_can_not_extend_select_key');
	}
	public function getIsAfter()
	{
		return $this->_type == 'post';
	}
}
?>
 |