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


PHP toba::puntos_control方法代碼示例

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


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

示例1: conf

 function conf()
 {
     ei_arbol(toba::puntos_control()->dump_estado());
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:4,代碼來源:ci_inscripcion_examen.php

示例2: registrar_evento

 /**
  * Dispara un evento dentro del nivel actual
  * Puede recibir N parametros adicionales (ej <pre>$this->registrar_evento('form', ',modificacion', $datos, $fila,...)</pre>)
  * @param string $id Id. o rol que tiene la dependencia en este objeto
  * @param string $evento Id. del evento
  * @ignore 
  */
 function registrar_evento($id, $evento)
 {
     $parametros = func_get_args();
     array_splice($parametros, 0, 2);
     $metodo = apex_ei_evento . apex_ei_separador . $id . apex_ei_separador . $evento;
     if (method_exists($this, $metodo)) {
         $this->_log->debug($this->get_txt() . "[ registrar_evento ] '{$evento}' -> [ {$metodo} ]\n" . var_export($parametros, true), 'toba');
         $componente = $this->dep($id);
         //if ($this->debe_disparar_evento($componente, $evento)) {			//Por si se requiere el esquema en PHP
         if ($componente->tiene_puntos_control($evento)) {
             toba::puntos_control()->ejecutar_puntos_control($componente, $evento, $parametros);
         }
         return call_user_func_array(array($this, $metodo), $parametros);
         //}
     } else {
         $this->_log->info($this->get_txt() . "[ registrar_evento ]  El METODO [ {$metodo} ] no existe - '{$evento}' no fue atrapado", 'toba');
         return apex_ei_evt_sin_rpta;
     }
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:26,代碼來源:toba_ci.php


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