예제 #1
0
 function write()
 {
     $writer = new xtreme_file_writer();
     $writer->write_file('xtreme_patch.css', $this->patch_css(), $this->dir);
 }
예제 #2
0
 function write()
 {
     $writer = new xtreme_file_writer();
     $writer->write_file('production-min.css', $this->_compress_css(), $this->dir);
     $writer->write_file('production.css', $this->_readable_css(), $this->dir);
 }
예제 #3
0
 function write()
 {
     $writer = new xtreme_file_writer();
     $writer->write_file('xtreme_basemod.css', $this->basemod_css(), $this->dir);
 }
예제 #4
0
 function write()
 {
     if (!XF_IS_MAIN_BLOG) {
         return;
     }
     if (@file_exists($this->dir . '.htaccess')) {
         $writer = new xtreme_file_writer();
         $writer->write_file('.htaccess', $this->htaccess_content(), $this->dir);
     }
 }
예제 #5
0
 function write()
 {
     $writer = new xtreme_file_writer();
     $writer->write_file('editor-style.css', $this->editor_css(), $this->dir);
 }