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


PHP cHForm::addPersonaComandos方法代碼示例

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


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

示例1: cHForm

    $xFRM = new cHForm("extrasocios", "socios.panel.frm.php");
    $xBtn = new cHButton();
    $xTxt = new cHText();
    $xFRM->setTitle($xHP->getTitle());
    $xFRM->addPersonaBasico();
    $xFRM->addSubmit();
    echo $xFRM->get();
} else {
    $xSoc = new cSocio($idsocio, true);
    $xHTabs = new cHTabs();
    $xBtn = new cHButton("");
    $oFrm = new cHForm("extrasocios", "");
    $xHSel = new cHSelect();
    $oFrm->OButton("TR.Recargar", "jsRecargar()", $oFrm->ic()->RECARGAR);
    $oFrm->addHTML($xSoc->getFicha(true));
    $oFrm->addPersonaComandos($idsocio);
    if (getEsModuloMostrado(USUARIO_TIPO_OFICIAL_CAPT) == true or getEsModuloMostrado(USUARIO_TIPO_OFICIAL_CRED) == true) {
        //Agregar otra opciones
        $oFrm->addToolbar($xBtn->getBasic("TR.Actualizar Datos", "updateDat()", "editar", "edit-socio", false));
        $oFrm->addToolbar($xBtn->getBasic("TR.Agregar Descuento Solicitado", "jsAddDescuento()", "dinero", "edit-descuento", false));
        $oFrm->OButton("TR.Reporte SIC", "jsGetCirculoDeCredito()", $xBtn->ic()->REPORTE);
        $oFrm->addToolbar($xBtn->getBasic("TR.Enviar a Empresa Asociada", "jsaSetEnviarParaAsociada()", $xBtn->ic()->EXPORTAR, "edit-aasoc", false));
    }
    //===============================================================================
    $setSql4 = $xql->getListadoDeNotas($idsocio);
    $c4Tbl = new cTabla($setSql4);
    $c4Tbl->setKeyField("idsocios_memo");
    $c4Tbl->addTool(2);
    $xHTabs->addTab($oFrm->lang("NOTAS"), $c4Tbl->Show());
    //1
    $xHTabs->addTab("TR.DOMICILIO", "");
開發者ID:Cywaithaka,項目名稱:S.A.F.E.-Open-Source-Microfinance-Suite,代碼行數:31,代碼來源:socios.panel.frm.php

示例2: parametro

         $integrantes[] = parametro("idsocio9", false, MQL_INT);
         foreach ($integrantes as $key => $idpersona) {
             if (setNoMenorQueCero($idpersona) > DEFAULT_SOCIO) {
                 $xGrupo->addIntegrante($idpersona);
             }
         }
         if (MODO_DEBUG == true) {
             $msg .= $xGrupo->getMessages();
         }
     }
 }
 //Agregar Domicilio si existe
 $persona = $xSoc->getCodigo();
 $xFRM->addHTML($xSoc->getFicha());
 $lastpersona = $xCL->getUltimoSocioRegistrado(true);
 $xFRM->addPersonaComandos($persona);
 $xFRM->addAvisoRegistroOK();
 //==================================== Nuevas Relaciones
 if ($origen_relacion == false) {
     $xTbl = new cHTabla("idtblrels");
     $xHSel = new cHSelect();
     $xChk = new cHCheckBox();
     $xText = new cHText();
     $xText->setDivClass("");
     $xChk->setDivClass("");
     $xBtn = new cHButton();
     $xUl = new cHUl();
     $li = $xUl->getO();
     $li->setT("ul");
     $li->setClass("tags blue");
     $li->add($xBtn->getBasic("TR.Guadar", "jsGuardarReferencia()", $xBtn->ic()->GUARDAR, "idguardar", false, true), "");
開發者ID:Cywaithaka,項目名稱:S.A.F.E.-Open-Source-Microfinance-Suite,代碼行數:31,代碼來源:registro-personas.frm.php


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