コード例 #1
0
 function getParsedCode()
 {
     // Flush the last of the code
     $this->_addToParsedCode($this->_codeParser->flush());
     //Allow the code renderer to postprocess the code
     $this->_renderer->renderPostview();
     $result = $this->_renderer->getHeader() . $this->_parsedCode . $this->_renderer->getFooter();
     $this->_parsedCode = '';
     return $result;
 }