ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.arStatement.php
Go to the documentation of this file.
1 <?php
2 
10 abstract class arStatement
11 {
12 
16  protected $table_name_as = '';
17 
18 
24  abstract public function asSQLStatement(ActiveRecord $ar);
25 
26 
30  public function getTableNameAs()
31  {
32  return $this->table_name_as;
33  }
34 
35 
39  public function setTableNameAs($table_name_as)
40  {
41  $this->table_name_as = $table_name_as;
42  }
43 }
setTableNameAs($table_name_as)
Class ActiveRecord.
Class arStatement.
asSQLStatement(ActiveRecord $ar)