<?php // You can add or remove every "type" configuration but please don't change GzOutputClassFile and GlobalCacheFolder key names $config = array( // * relative path from this file // (i.e. 'javascript' if this file folder has a "javascript" folder, '../javascript/' if folder is before than this one) 'GzOutputClassFile' => 'php/classes/GzOutput.class.php', // relative GzOutput class file folder 'GlobalCacheFolder' => 'cache', // relative cache folder* 'JavaScriptInformations'=> array( // JavaScript configuration 'Folder' => 'javascript', // relative JavaScript folder* 'Extension' => 'js', // JavaScript extension 'Type' => 'text/javascript', // JavaScript Content-Type, 'Comments' => '// (C) Andrea Giammarchi', // JavaScript Comments 'Compression' => 9, // JavaScript Compression level (0 - 9) 'Crunch' => 2 // JavaScript Crunch level (0 - 3) ), 'CSSInformations' => array( // CSS configuration 'Folder' => 'css', // relative CSS folder* 'Extension' => 'css', // CSS extension 'Type' => 'text/css', // CSS Content-Type 'Comments' => '// (C) Andrea Giammarchi', // CSS Comments 'Compression' => 9, // CSS Compression level (0 - 9) 'Crunch' => 3 // CSS Crunch level (0 - 3) ) ); // please don't modify these two lines require $config['GzOutputClassFile']; GzOutput::createFromConfig($config); ?>