ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
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 arStatement.
asSQLStatement(ActiveRecord $ar)