Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/minify/lib/Minify/Logger.php
Go to the documentation of this file.
00001 <?php
00013 class Minify_Logger {
00014 
00024     public static function setLogger($obj = null) {
00025         self::$_logger = $obj
00026             ? $obj
00027             : null;
00028     }
00029     
00036     public static function log($msg, $label = 'Minify') {
00037         if (! self::$_logger) return;
00038         self::$_logger->log($msg, $label);
00039     }
00040     
00044     private static $_logger = null;
00045 }
 All Data Structures Namespaces Files Functions Variables Enumerations