XpressEngine Core  1.11.2
 All Classes Namespaces Files Functions Variables Pages
Expression.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) NAVER <http://www.navercorp.com> */
3 
17 {
18 
24 
31  {
32  $this->column_name = $column_name;
33  }
34 
35  function getColumnName()
36  {
37  return $this->column_name;
38  }
39 
40  function show()
41  {
42  return false;
43  }
44 
49  function getExpression()
50  {
51 
52  }
53 
54 }
55 /* End of file Expression.class.php */
56 /* Location: ./classes/db/queryparts/expression/Expression.class.php */
__construct($column_name)