Exemplo n.º 1
0
 protected function postFilter($filterChain)
 {
     if ($this->doCompress) {
         if (!$this->gzip) {
             $content = ob_get_clean();
             if ($this->doStripNewlines) {
                 $content = str_replace(array("\n", "\r"), '', $content);
             }
             echo $this->compressHtml($content);
         }
     }
     parent::postFilter($filterChain);
 }
 protected function postFilter($filterChain)
 {
     $out = ob_get_clean();
     echo preg_replace("~>(\\s+|\t+|\n+)<~", "><", $out);
     parent::postFilter($filterChain);
 }
 protected function postFilter($filterChain)
 {
     self::$session->add('appointmentBuilder', self::$current);
     parent::postFilter($filterChain);
 }