Beispiel #1
0
 public static function addCache($adapter, array $options)
 {
     switch ($adapter) {
         case 'filesystem':
             $adapter_config = array('name' => 'filesystem', 'options' => array('path' => isset($options['filesystem-path']) ? $options['filesystem-path'] : null));
             break;
         case 'predis':
             $adapter_config = array('name' => 'predis', 'options' => array('options' => isset($options['predis-options']) ? $options['predis-options'] : null, 'parameters' => isset($options['predis-parameters']) ? $options['predis-parameters'] : null));
             break;
         case 'redis':
         default:
             $adapter_config = array('name' => 'redis', 'options' => array('host' => isset($options['redis-host']) ? $options['redis-host'] : null, 'port' => isset($options['redis-port']) ? $options['redis-port'] : null, 'password' => isset($options['redis-pass']) ? $options['redis-pass'] : null, 'timeout' => isset($options['redis-timeout']) ? $options['redis-timeout'] : null));
             break;
     }
     ServiceProvider::registerCache(new Pool(array('adapter' => $adapter_config)));
 }
Beispiel #2
0
 public static function addLogger($adapter, $level, LoggerInterface $custom = null)
 {
     $logger = null;
     if ($custom !== null) {
         $logger = $custom;
     } else {
         $logAdapter = null;
         switch ($adapter) {
             case 'syslog':
                 $logAdapter = new Syslog();
                 break;
             case 'stdout':
             default:
                 $logAdapter = new Stdout();
                 break;
         }
         if (!LogLevelEnum::isValid($level)) {
             $level = LogLevel::INFO;
         }
         $logger = new Logger($logAdapter, $level);
     }
     ServiceProvider::registerLogger($logger);
 }