當前位置: 首頁>>代碼示例>>PHP>>正文


PHP logger::singleton方法代碼示例

本文整理匯總了PHP中logger::singleton方法的典型用法代碼示例。如果您正苦於以下問題:PHP logger::singleton方法的具體用法?PHP logger::singleton怎麽用?PHP logger::singleton使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在logger的用法示例。


在下文中一共展示了logger::singleton方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

        public 	function __construct($esteBloque, $lenguaje = "") {
		
		// El objeto de la clase Configurador debe ser único en toda la aplicación
		$this->miConfigurador = \Configurador::singleton ();
		
		$ruta = $this->miConfigurador->getVariableConfiguracion ( "raizDocumento" );
		$rutaURL = $this->miConfigurador->getVariableConfiguracion ( "host" ) . $this->miConfigurador->getVariableConfiguracion ( "site" );
		
		if (! isset ( $esteBloque ["grupo"] ) || $esteBloque ["grupo"] == "") {
			$ruta .= "/blocks/" . $esteBloque ["nombre"] . "/";
			$rutaURL .= "/blocks/" . $esteBloque ["nombre"] . "/";
		} else {
			$ruta .= "/blocks/" . $esteBloque ["grupo"] . "/" . $esteBloque ["nombre"] . "/";
			$rutaURL .= "/blocks/" . $esteBloque ["grupo"] . "/" . $esteBloque ["nombre"] . "/";
		}
		
		$this->miConfigurador->setVariableConfiguracion ( "rutaBloque", $ruta );
		$this->miConfigurador->setVariableConfiguracion ( "rutaUrlBloque", $rutaURL );
		
		$this->miFuncion = new Funcion ();
		$this->miSql = new Sql ();
		$this->miFrontera = new Frontera ();
		$this->miLenguaje = new Lenguaje ();
                //Objeto de la clase Loger
                $this->miLogger = \logger::singleton();
	}
開發者ID:udistrital,項目名稱:tike_desarrollo,代碼行數:26,代碼來源:bloque.php

示例2: __construct

 function __construct($lenguaje, $sql)
 {
     $this->miConfigurador = \Configurador::singleton();
     $this->miConfigurador->fabricaConexiones->setRecursoDB('principal');
     $this->lenguaje = $lenguaje;
     $this->miSql = $sql;
     $this->miSesion = \Sesion::singleton();
     //Objeto de la clase Loger
     $this->miLogger = \logger::singleton();
 }
開發者ID:jdavid6700,項目名稱:titan_desarrollo,代碼行數:10,代碼來源:formProcessor.php

示例3: __construct

 function __construct()
 {
     $this->miConfigurador = \Configurador::singleton();
     $this->miInspectorHTML = \InspectorHTML::singleton();
     $this->ruta = $this->miConfigurador->getVariableConfiguracion("rutaBloque");
     $this->miMensaje = \Mensaje::singleton();
     $this->miLogger = \logger::singleton();
     $conexion = "aplicativo";
     $this->miRecursoDB = $this->miConfigurador->fabricaConexiones->getRecursoDB($conexion);
     if (!$this->miRecursoDB) {
         $this->miConfigurador->fabricaConexiones->setRecursoDB($conexion, "tabla");
         $this->miRecursoDB = $this->miConfigurador->fabricaConexiones->getRecursoDB($conexion);
     }
 }
開發者ID:fernandoceli,項目名稱:polux_desarrollo,代碼行數:14,代碼來源:Funcion.class.php


注:本文中的logger::singleton方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。