Example #1
0
 function listHeader()
 {
     if (empty($this->parser)) {
         $this->parser = new FSSParser();
     }
     if (empty($this->db_time)) {
         $this->getDBTime();
     }
     if ($this->layoutpreview) {
         $this->parser->Load('preview', 1);
     } else {
         $this->parser->Load(FSS_Settings::get('support_list_template'), 1);
     }
     FSSParserTicket::header($this->parser, $this->customfields);
     FSSParserTicket::forAdmin($this->parser, null, $this->customfields);
     $this->setupParserView();
     echo $this->parser->Parse();
 }