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


PHP toba_ei_formulario::set_solo_lectura方法代碼示例

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


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

示例1:

 function conf__form_columnas(toba_ei_formulario $form)
 {
     $form->set_solo_lectura(null, $this->s__solo_lectura);
     $form->ef('multi_check')->set_cantidad_columnas($this->s__datos['columnas']);
     $form->ef('radio')->set_cantidad_columnas($this->s__datos['columnas']);
     $form->set_datos($this->s__datos);
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:7,代碼來源:ci_checks_radios.php

示例2:

 function conf__form_usuario(toba_ei_formulario $form)
 {
     //Probablemente esto vaya vacio a excepcion del usuario si es que se pasa
     if (isset($this->s__usuario) && !is_null($this->s__usuario)) {
         $form->set_datos_defecto(array('usuario' => $this->s__usuario));
         $form->set_solo_lectura(array('usuario'));
     }
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:8,代碼來源:ci_recordatorio_pwd.php

示例3: array

 function conf__form_datos_perfil(toba_ei_formulario $componente)
 {
     if (toba::instalacion()->es_produccion()) {
         $componente->desactivar_efs(array('permite_edicion'));
     }
     $datos = array();
     if ($this->datos('accesos')->hay_cursor()) {
         $datos = $this->datos('accesos')->get();
         $componente->set_solo_lectura(array('usuario_grupo_acc'));
         if (toba::instalacion()->es_produccion() && isset($datos['permite_edicion']) && !$datos['permite_edicion']) {
             $this->pantalla()->eliminar_evento('guardar');
             $this->pantalla()->eliminar_evento('eliminar');
         }
     } else {
         $componente->ef('usuario_grupo_acc')->set_expreg('/^[a-z0-9_]+$/');
         $datos['proyecto'] = $this->s__filtro['proyecto'];
     }
     $componente->set_datos($datos);
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:19,代碼來源:ci_navegacion_perfiles.php


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