ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
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 
15  protected $table_name_as = '';
16 
17 
23  abstract public function asSQLStatement(ActiveRecord $ar);
24 
25 
29  public function getTableNameAs() {
30  return $this->table_name_as;
31  }
32 
33 
37  public function setTableNameAs($table_name_as) {
38  $this->table_name_as = $table_name_as;
39  }
40 }
41 
42 ?>
setTableNameAs($table_name_as)
Class ActiveRecord.
Class arStatement.
asSQLStatement(ActiveRecord $ar)