예제 #1
0
파일: Base.php 프로젝트: agentile/foresmo
 /**
  * _postRender
  * Insert description here
  *
  *
  * @return
  *
  * @access
  * @static
  * @see
  * @since
  */
 protected function _postRender()
 {
     parent::_postRender();
     /*
             if (class_exists('tidy')) {
                 $tidy = new tidy();
                 $config = array(
                    'indent' => true,
                    'indent-spaces' => 4,
                    'wrap' => 200
                 );
                 $tidy->parseString($this->_response->content, $config, 'utf8');
                 $tidy->cleanRepair();
     
                 // Output
                 $this->_response->content = $tidy;
             }
     */
 }
예제 #2
0
파일: Page.php 프로젝트: agentile/foresmo
 /**
  * 
  * Hook for post-render filtering.
  * 
  * @return void
  * 
  */
 protected function _postRender()
 {
     parent::_postRender();
     $this->hooks[__FUNCTION__]++;
 }