Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/xampp/php/pear/PHP/Debug/ |
<?php require_once 'PHP/Debug/Renderer/Common.php'; /** * A loader class for the renderers. * * @package PHP_Debug * @category PHP * @author Loic Vernet <qrf_coil at yahoo dot fr> * @since V2.0.0 - 10 Apr 2006 * * @package PHP_Debug * @filesource * @version CVS: $Id: Renderer.php,v 1.1 2008/05/02 14:26:37 c0il Exp $ */ class PHP_Debug_Renderer { /** * Attempt to return a concrete Debug_Renderer instance. * * @param string $mode Name of the renderer. * @param array $options Parameters for the rendering. * @access public */ public static function factory($debugObject, $options) { $className = 'PHP_Debug_Renderer_'. $options['render_type']. '_'. $options['render_mode']; $classPath = 'PHP/Debug/Renderer/'. $options['render_type']. '/'. $options['render_mode']. '.php'; include_once $classPath; if (class_exists($className)) { $obj = new $className($debugObject, $options); } else { include_once 'PEAR.php'; PEAR::raiseError('PHP_Debug: renderer >' . $options['DEBUG_render_mode'] . '< not found', true); return NULL; } return $obj; } }