ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups 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 ?>