| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since CakePHP(tm) v 2.2
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Log;
- use Cake\Core\App;
- use Cake\Error;
- use Cake\Log\LogInterface;
- use Cake\Utility\ObjectRegistry;
- /**
- * Registry of loaded log engines
- */
- class LogEngineRegistry extends ObjectRegistry {
- /**
- * Resolve a logger classname.
- *
- * Part of the template method for Cake\Utility\ObjectRegistry::load()
- *
- * @param string $class Partial classname to resolve.
- * @return string|false Either the correct classname or false.
- */
- protected function _resolveClassName($class) {
- if (is_object($class)) {
- return $class;
- }
- return App::classname($class, 'Log/Engine', 'Log');
- }
- /**
- * Throws an exception when a logger is missing.
- *
- * Part of the template method for Cake\Utility\ObjectRegistry::load()
- *
- * @param string $class The classname that is missing.
- * @param string $plugin The plugin the logger is missing in.
- * @throws Cake\Error\Exception
- */
- protected function _throwMissingClassError($class, $plugin) {
- throw new Error\Exception(__d('cake_dev', 'Could not load class %s', $class));
- }
- /**
- * Create the logger instance.
- *
- * Part of the template method for Cake\Utility\ObjectRegistry::load()
- * @param string|LogInterface $class The classname or object to make.
- * @param array $settings An array of settings to use for the logger.
- * @return LogEngine The constructed logger class.
- * @throws Cake\Error\Exception when an object doesn't implement
- * the correct interface.
- */
- protected function _create($class, $settings) {
- if (is_object($class)) {
- $instance = $class;
- }
- if (!isset($instance)) {
- $instance = new $class($settings);
- }
- if ($instance instanceof LogInterface) {
- return $instance;
- }
- throw new Error\Exception(__d(
- 'cake_dev',
- 'Loggers must implement Cake\Log\LogInterface.'
- ));
- }
- /**
- * Remove a single logger from the registry.
- *
- * @param string $name The logger name.
- * @return void
- */
- public function unload($name) {
- unset($this->_loaded[$name]);
- }
- }
|