48 lines
1007 B
PHP
48 lines
1007 B
PHP
<?php
|
|
|
|
/** Ticket Reduction Container
|
|
*
|
|
* @version 1.9.1
|
|
* @since 2007-05-01
|
|
* @author martin lenzelbauer
|
|
*
|
|
* @change 2007-06-18
|
|
* changed install() due to changes in Container
|
|
*/
|
|
class TicketReductionContainer extends Container{
|
|
|
|
|
|
/** C'tor
|
|
*/
|
|
//-----------------------------------------------
|
|
function TicketReductionContainer($id=0, $parent=NULL){
|
|
//-----------------------------------------------
|
|
parent::Container($id, $parent);
|
|
$this->name = "Ermäßigungen";
|
|
$this->objectsClass = "TicketReduction";
|
|
$this->allowedChildObjects = array("ticketreduction");
|
|
}
|
|
|
|
|
|
/** @see Container::install()
|
|
*/
|
|
//----------------------------------------------
|
|
function install(){
|
|
//----------------------------------------------
|
|
parent::install();
|
|
}
|
|
|
|
|
|
/** @see Element::getCssClass()
|
|
*/
|
|
//-----------------------------------------------
|
|
function getCssClass(){
|
|
//-----------------------------------------------
|
|
return "itemTicketReduction";
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
?>
|