コード例 #1
0
ファイル: class.php プロジェクト: nxtclass/NXTClass-themes
 /**
  */
 public function render($output = true)
 {
     if (!$output) {
         ob_start();
     }
     $this->open_block();
     parent::render(true);
     $this->close_block();
     if (!$output) {
         return ob_get_clean();
     }
 }