49 lines
998 B
PHP
49 lines
998 B
PHP
<?php
|
|
|
|
/** Ticket Category Container
|
|
*
|
|
* @version 1.9.1
|
|
* @since 2007-05-01
|
|
* @author martin lenzelbauer
|
|
*
|
|
* @change 2007-06-18
|
|
* changed install() due to changes in Container
|
|
*
|
|
*/
|
|
class TicketCategoryContainer extends Container{
|
|
|
|
|
|
/** C'tor
|
|
*/
|
|
//-----------------------------------------------
|
|
function TicketCategoryContainer($id=0, $parent=NULL){
|
|
//-----------------------------------------------
|
|
parent::Container($id, $parent);
|
|
$this->name = "Kategorien";
|
|
$this->objectsClass = "TicketCategory";
|
|
$this->allowedChildObjects = array("ticketcategory");
|
|
}
|
|
|
|
|
|
/** @see Container::install()
|
|
*/
|
|
//----------------------------------------------
|
|
function install(){
|
|
//----------------------------------------------
|
|
parent::install();
|
|
}
|
|
|
|
|
|
/** @see Element::getCssClass()
|
|
*/
|
|
//-----------------------------------------------
|
|
function getCssClass(){
|
|
//-----------------------------------------------
|
|
return "itemTicketCategory";
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
?>
|