ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
arLimit Class Reference

Class arLimit. More...

+ Inheritance diagram for arLimit:
+ Collaboration diagram for arLimit:

Public Member Functions

 asSQLStatement (ActiveRecord $ar)
 setEnd ($end)
 getEnd ()
 setStart ($start)
 getStart ()
- Public Member Functions inherited from arStatement
 getTableNameAs ()
 setTableNameAs ($table_name_as)

Protected Attributes

 $start
 $end
- Protected Attributes inherited from arStatement
 $table_name_as = ''

Detailed Description

Class arLimit.

Author
Fabian Schmid fs@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch
Version
2.0.7

Definition at line 11 of file class.arLimit.php.

Member Function Documentation

arLimit::asSQLStatement ( ActiveRecord  $ar)
Parameters
ActiveRecord$ar
Returns
string

Reimplemented from arStatement.

Definition at line 28 of file class.arLimit.php.

References getEnd(), and getStart().

{
return ' LIMIT ' . $this->getStart() . ', ' . $this->getEnd();
}

+ Here is the call graph for this function:

arLimit::getEnd ( )
Returns
int

Definition at line 44 of file class.arLimit.php.

References $end.

Referenced by asSQLStatement().

{
return $this->end;
}

+ Here is the caller graph for this function:

arLimit::getStart ( )
Returns
int

Definition at line 60 of file class.arLimit.php.

References $start.

Referenced by asSQLStatement().

{
return $this->start;
}

+ Here is the caller graph for this function:

arLimit::setEnd (   $end)
Parameters
int$end

Definition at line 36 of file class.arLimit.php.

References $end.

{
$this->end = $end;
}
arLimit::setStart (   $start)
Parameters
int$start

Definition at line 52 of file class.arLimit.php.

References $start.

{
$this->start = $start;
}

Field Documentation

arLimit::$end
protected

Definition at line 20 of file class.arLimit.php.

Referenced by getEnd(), and setEnd().

arLimit::$start
protected

Definition at line 16 of file class.arLimit.php.

Referenced by getStart(), and setStart().


The documentation for this class was generated from the following file: