mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
25 lines
440 B
PHP
Executable File
25 lines
440 B
PHP
Executable File
<?php
|
|
|
|
require_once dirname(__FILE__) . "/cssmin-v1.0.1.b3.php";
|
|
|
|
|
|
/**
|
|
* Пакеровщик css файлов
|
|
*
|
|
* @author Zmi
|
|
*/
|
|
class CssPacker
|
|
{
|
|
private $content;
|
|
|
|
public function __construct($c)
|
|
{
|
|
$this->content = $c;
|
|
}
|
|
|
|
public function Pack()
|
|
{
|
|
return cssmin::minify($this->content);
|
|
}
|
|
};
|
|
?>
|