示例#1
0
 /**
  * XXX: why does it use Flexy when all other stuff here does not depend on it?
  */
 function outputStyle()
 {
     ob_start();
     HTML_Template_Flexy::staticQuickTemplate('styles/' . $this->style . '.html', $this);
     $ret = ob_get_contents();
     ob_end_clean();
     return $ret;
 }
示例#2
0
 function outputStyle()
 {
     $filename = "styles/" . $this->style . ".html";
     ob_start();
     HTML_Template_Flexy::staticQuickTemplate($filename, $this);
     $ret = ob_get_contents();
     ob_end_clean();
     return $ret;
 }