| 1 |
<?php |
| 2 |
/** |
| 3 |
* Class Minify_Packer |
| 4 |
* |
| 5 |
* To use this class you must first download the PHP port of Packer |
| 6 |
* and place the file "class.JavaScriptPacker.php" in /lib (or your |
| 7 |
* include_path). |
| 8 |
* @link http://joliclic.free.fr/php/javascript-packer/en/ |
| 9 |
* |
| 10 |
* Be aware that, as long as HTTP encoding is used, scripts minified with JSMin |
| 11 |
* will provide better client-side performance, as they need not be unpacked in |
| 12 |
* client-side code. |
| 13 |
* |
| 14 |
* @package Minify |
| 15 |
*/ |
| 16 |
|
| 17 |
/** |
| 18 |
* Minify Javascript using Dean Edward's Packer |
| 19 |
* |
| 20 |
* @package Minify |
| 21 |
*/ |
| 22 |
class Minify_Packer |
| 23 |
{ |
| 24 |
public static function minify($code, $options = array()) |
| 25 |
{ |
| 26 |
// @todo: set encoding options based on $options :) |
| 27 |
$packer = new JavascriptPacker($code, 'Normal', true, false); |
| 28 |
|
| 29 |
return trim($packer->pack()); |
| 30 |
} |
| 31 |
} |
| 32 |
|