コード例 #1
0
 /**
  *
  */
 protected function processStyles()
 {
     if (isset($this->render_style_file_groups) && is_array($this->render_style_file_groups)) {
         foreach ($this->render_style_file_groups as $filegroup) {
             parent::processStyleFiles($filegroup);
             $oc = RokBooster_Compressor_OutputContainerFactory::create($filegroup, $this->options);
             $oc->write('text/css');
             $this->storeFileInfo($filegroup);
             $this->finishedRendering($filegroup);
         }
     }
 }
コード例 #2
0
 /**
  *
  */
 protected function processStyleFiles()
 {
     if (isset($this->render_style_file_groups) && is_array($this->render_style_file_groups)) {
         foreach ($this->render_style_file_groups as $filegroup) {
             parent::processStyleFiles($filegroup);
             $this->cache->writeStyleFile($filegroup);
             $this->storeFileInfo($filegroup);
             $this->finishedRendering($filegroup->getChecksum());
         }
     }
 }