本文整理汇总了PHP中cHForm::setTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP cHForm::setTitle方法的具体用法?PHP cHForm::setTitle怎么用?PHP cHForm::setTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cHForm
的用法示例。
在下文中一共展示了cHForm::setTitle方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: jsAgregarContrato
function jsAgregarContrato($id, $nombre)
{
$xForma = new cFormato();
}
//$jxc ->exportFunction('jsAgregarContrato', array('idsolicitud', 'idparcialidad'), "#iddatos_pago");
$jxc->process();
//ini_set("display_errors", "on");
$xHP->init("initComponents()");
if ($action == SYS_NINGUNO) {
$xFRM->addHElem($xFMT->getSelectDeFormatos()->get(true));
$xFRM->addSubmit();
} elseif ($action == SYS_UNO) {
//editar
$xFMT->init($idcontrato);
$titulo = $xFMT->getTitulo();
$xFRM->setTitle($titulo);
$xFRM->addHElem($xFMT->getSelectVariables("", "onchange=\"jsAddText()\" "));
$xFRM->addSubmit("", "", "");
$text_default = $xFMT->get();
$xFRM->addHTML("<textarea class=\"ckeditor\" name=\"ckeditor\" id=\"ckeditor\" rows=\"20\" cols=\"15\">{$text_default}</textarea>");
$xFRM->addFootElement("<input type='hidden' value='{$idcontrato}' name='idcontrato' />");
$xFRM->setAction("frmeditor_contratos.php?action=2");
} elseif ($action == SYS_DOS) {
//guardar
$s = isset($_REQUEST["ckeditor"]) ? $_REQUEST["ckeditor"] : "";
$i = parametro("idcontrato");
$text_default = stripslashes($s);
if ($s != "" && $i != "") {
$sqluc = "UPDATE general_contratos SET texto_del_contrato='{$s}' WHERE idgeneral_contratos={$i}";
$x = my_query($sqluc);
if ($x[SYS_ESTADO] != false) {
示例2: cSocio
$xSoc = new cSocio($socio);
$xSoc->init();
$x = $xSoc->getIDExPagarByPeriodo(false, $monto, $tipo_de_pago);
$tab = new TinyAjaxBehavior();
$tab->add(TabSetValue::getBehavior("idide", $x));
return $tab->getString();
}
$jxc->exportFunction('jsaGetIDE', array('idsocio', "idmonto", "idtipo_pago"));
$jxc->process();
echo $xHP->getHeader();
$xFRM = new cHForm("depositoahorro", "frmdepositoinversion.php?action=next");
$xBtn = new cHButton();
$xTxt = new cHText();
$xDate = new cHDate();
$xSel = new cHSelect();
$xFRM->setTitle($xHP->getTitle());
?>
<body <?php
echo $actload;
?>
>
<?php
$xFRM->setTitle($xHP->getTitle());
if ($action == SYS_NINGUNO) {
$xFRM->addCuentaCaptacionBasico(true, CAPTACION_TIPO_PLAZO);
$xFRM->addSubmit();
$xFRM->addHElem($xTxt->getDeMoneda("idmonto", "TR.deposito", 0, true));
$xFRM->addCobroBasico();
$xFRM->addHElem($xDate->get("TR.Fecha"));
$xFRM->addObservaciones();
$xFRM->addJsBasico(iDE_CAPTACION, CAPTACION_TIPO_PLAZO);
示例3: isset
$idrecibo = "";
$recibo_de_prestamo = "";
$idsocio = isset($_REQUEST["idsocio"]) ? $_REQUEST["idsocio"] : false;
$idsolicitud = isset($_REQUEST["idsolicitud"]) ? $_REQUEST["idsolicitud"] : false;
$idsocio = parametro("persona", $idsocio);
$idsolicitud = parametro("credito", $idsolicitud);
$idrecibo = DEFAULT_RECIBO;
echo $xHP->getHeader();
$oFrm = new cHForm("frmextrasol", "creditos.panel.frm.php");
$xJs = new jsBasicForm("frmextrasol");
//$xJs->setEstatusDeCreditos($estatus);
$xJs->setIncludeJQuery();
$mSQL = new cSQLListas();
$pathContrato = "";
$pathPagare = "";
$oFrm->setTitle($xHP->getTitle());
?>
<body>
<?php
if (setNoMenorQueCero($idsolicitud) <= 0) {
$idsocio = getPersonaEnSession();
$oFrm->addCreditBasico();
$oFrm->addSubmit();
echo $oFrm->get();
//echo $xJs->get();
$idsolicitud = DEFAULT_CREDITO;
//exit( "<p class='aviso'>AGREGUE UN NUMERO DE SOLICITUD</p></body></html>");
} else {
$oFrm->OButton("TR.Recargar", "jsRecargar()", "refrescar", "refrescar");
//Tabs
$xHTabs = new cHTabs();
示例4: parametro
$cuenta = parametro("cuenta", DEFAULT_CUENTA_CORRIENTE, MQL_INT);
$cuenta = parametro("idcuenta", $cuenta, MQL_INT);
$jscallback = parametro("callback");
$tiny = parametro("tiny");
$form = parametro("form");
$action = parametro("action", SYS_NINGUNO);
echo $xHP->getHeader();
echo $xHP->setBodyinit();
$xFRM = new cHForm("frmpugarentidades", "purgar-entidadesfederativas.frm.php?action=next");
$xBtn = new cHButton();
$xTxt = new cHText();
$xDate = new cHDate();
$xSel = new cHSelect();
$xChk = new cHCheckBox();
$msg = "";
$xFRM->setTitle("TR.purgar de entidadades federativas");
$xFRM->addJsBasico();
//$xFRM->addCreditBasico();
$mql = new MQL();
//Obtener lista de estados
$sql = "SELECT * FROM `general_estados` ";
$data = $mql->getDataRecord($sql);
$cEs = new cGeneral_estados();
foreach ($data as $rows) {
$cEs->setData($rows);
if ($action == SYS_NINGUNO) {
$xFRM->addHTML($xChk->get($cEs->nombre()->v(), "estado" . $cEs->clave_numerica()->v()));
} else {
$eliminar = parametro("estado" . $cEs->clave_numerica()->v(), false, MQL_BOOL);
$estado = $cEs->clave_numerica()->v();
if ($eliminar == true) {
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:purgar-entidadesfederativas.frm.php
示例5: addslashes
include_once "../core/core.html.inc.php";
include_once "../core/core.init.inc.php";
$theFile = __FILE__;
//$permiso = getSIPAKALPermissions($theFile);
//if($permiso === false){ header ("location:../404.php?i=999"); }
$_SESSION["current_file"] = addslashes($theFile);
//<===== FIN_H
//=====================================================================================================
$xP = new cHPage("Pruebas de Fechas", HP_FORM);
echo $xP->getHeader();
echo $xP->setBodyinit();
//Crear formularios
$xFRM = new cHForm("frmTest", "./test.php");
$xHTxt = new cHText("");
$xHChk = new cHCheckBox();
$xFRM->setTitle("TR.Pruebas HTML");
//$xFRM->addHTML("<p>Esto es un parrafo de prueba</p>");
$xFRM->addHElem($xHChk->get("id1"));
$xFRM->addHElem($xHChk->get("id2"));
$xFRM->addHElem($xHChk->get("id3"));
$xFRM->addHElem($xHChk->get("id4"));
$xSoc = new cSocios_general();
$xSoc->setData($xSoc->query()->initByID(DEFAULT_SOCIO));
var_dump($xSoc->query()->getCampos());
//$xFRM->addAviso( $xSoc->query()->getListaDeCampos() );
$xFRM->OMoneda("ix", 4500, convertirletras("4,455.05"));
$xFRM->OMoneda("ix", 4500, convertirletras("4454.455.05"));
$xFRM->OMoneda("ix", 4500, convertirletras(45000));
//echo $xFRM->get();
$xTabla = new cCreditos_tipoconvenio();
$xFRM = new cHForm("frmcreditos_tipoconvenio", "creditos_tipoconvenio");
示例6: cHPage
//=====================================================================================================
$xHP = new cHPage("TR.Carga de Creditos", HP_FORM);
$oficial = elusuario($iduser);
ini_set("max_execution_time", 600);
$action = isset($_GET["o"]) ? $_GET["o"] : "x";
echo $xHP->getHeader();
//$jxc ->drawJavaScript(false, true);
?>
<body>
<?php
//Si la Operacion es Configurar los Datos
if ($action == "x") {
$xFRM = new cHForm("frmSendFiles", "mae.prestamos.upload.frm.php?o=u");
$xHSel = new cHSelect();
//$xHFil = new cHFile()
$xFRM->setTitle("TR.ENVIAR ARCHIVO DE Creditos");
$xFRM->setEnc("multipart/form-data");
$xFRM->OFile("cFile1", "", "TR.Archivo");
$xFRM->addHElem($xHSel->getListaDeProductosDeCredito()->get(true));
$xFRM->addSubmit();
echo $xFRM->get();
} elseif ($action == "u") {
echo '<form name="frmConvs" method="POST" action="mae.prestamos.upload.frm.php?o=s">
<fieldset>
<legend>Mostrar Resultado de la Carga</legend> ';
$usrFiles = array();
$usrFiles[0] = $_FILES["cFile1"];
$msg = "";
$arrPeriodos = array("D" => 10, "Q" => 15, "C" => 14, "S" => 7, "M" => 30, "" => 30, "O" => 1, "F" => 360);
$prePath = PATH_BACKUPS;
$lim = 1;
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:mae.prestamos.upload.frm.php
示例7: cCache
$ql->setRawQuery("CALL `sp_clonar_actividades` ");
$ql->setRawQuery("CALL `proc_perfil_egresos_por_persona` ");
$ql->setRawQuery("CALL `proc_creditos_letras_pendientes` ");
//
//Limpiar el Cache
//$xSys->setPowerOff();
//apagar el sistema
$xCache = new cCache();
$xCache->clean();
if ($parser != false) {
$log = $aliasFil;
$xPage = new cHPage("TR.Cierre del Dia", HP_FORM);
$xBtn = new cHButton("iact");
$oFRM = new cHForm("frmSubmit", "");
$oFRM->setElementByLine(2);
$oFRM->setTitle($xPage->getTitle() . " " . $xF->getFechaCorta());
echo $xPage->getHeader();
echo $xPage->setBodyinit();
$oFRM->addHTML("<a href=\"../utils/download.php?type=txt&download={$log}&file={$log}\" target=\"_blank\" class='button'>Descargar Archivo de EVENTOS DEL SISTEMA</a><br /><br />");
$log = getSucursal() . "-eventos-al-cierre-de-colocacion-del-dia-{$fechaop}";
$oFRM->addHTML("<a href=\"../utils/download.php?type=txt&download={$log}&file={$log}\" target=\"_blank\" class='button'>Descargar Archivo de EVENTOS de CIERRE DE COLOCACION</a><br /><br />");
if (MODULO_SEGUIMIENTO_ACTIVADO == true) {
$log = getSucursal() . "-eventos-al-cierre-de-seguimiento-del-dia-{$fechaop}";
$oFRM->addHTML("<a href=\"../utils/download.php?type=txt&download={$log}&file={$log}\" target=\"_blank\" class='button'>Descargar Archivo de EVENTOS de CIERRE DE SEGUIMIENTO</a><br /><br />");
}
if (MODULO_CONTABILIDAD_ACTIVADO == true) {
$log = getSucursal() . "-eventos-al-cierre-de-contabilidad-del-dia-{$fechaop}";
$oFRM->addHTML("<a href=\"../utils/download.php?type=txt&download={$log}&file={$log}\" target=\"_blank\" class='button'>Descargar Archivo de EVENTOS de CIERRE DE CONTABILIDAD</a><br /><br />");
}
if (MODULO_CAPTACION_ACTIVADO == true) {
$log = getSucursal() . "-eventos-al-cierre-de-captacion-del-dia-{$fechaop}";
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:cierre_de_sistema.frm.php
示例8: jsaSetClonarProducto
$jxc = new TinyAjax();
function jsaSetClonarProducto($idclonado, $nuevoid, $nombre)
{
$xProducto = new cProductoDeCredito($idclonado);
$xProducto->add($nuevoid, $nombre, $idclonado);
return $xProducto->getMessages(OUT_HTML);
}
$jxc->exportFunction('jsaSetClonarProducto', array('idclonado', 'idnumero', 'iddescripcion'), "#fb_frm");
$jxc->process();
$producto = parametro("producto", null, MQL_INT);
$jscallback = parametro("callback");
$tiny = parametro("tiny");
$form = parametro("form");
$action = parametro("action", SYS_NINGUNO, MQL_RAW);
$opcion = parametro("tema", SYS_NINGUNO, MQL_RAW);
$xHP->init();
$xSel = new cHSelect();
$xFRM = new cHForm("frm", "./");
$xProd = new cCreditos_tipoconvenio();
$lastid = $xProd->query()->getLastID();
$xProd->setData($xProd->query()->initByID($producto));
$nombre = $xProd->descripcion_tipoconvenio()->v();
$xFRM->setTitle($xFRM->lang("duplicar") . " {$nombre}");
$xFRM->OMoneda("idnumero", $lastid, "TR.Codigo");
$xFRM->OText("iddescripcion", "", "TR.Nombre");
$xFRM->OHidden("idclonado", $producto);
$xFRM->addGuardar("jsaSetClonarProducto()");
$xFRM->addFooterBar(" ");
echo $xFRM->get();
$jxc->drawJavaScript(false, true);
$xHP->fin();
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:creditos.productos.add.frm.php
示例9: strtolower
if ($actualizar == true) {
$table = strtolower($table);
$xUtil = new cTableStructure($table);
$command = $xUtil->getNumeroDeCampos() > 0 ? SYS_CERO : SYS_UNO;
$xUtil->setStructureTableByDemand($command);
//0 update
}
if ($table == false) {
$xHP->init();
$xFRM = new cHForm("frmeditstructure", "frm_edit_structure.php");
$xBtn = new cHButton();
$xTxt = new cHText();
$xDate = new cHDate();
$xChk = new cHCheckBox();
//$xSel = new cHSelect();
$xFRM->setTitle("TR.Editar Estructura del Sistema");
$xSel = new cSelect("ctable", "ctable", "SHOW TABLES IN " . MY_DB_IN);
$xSel->setEsSql();
$xFRM->addHElem($xSel->get("TR.Nombre de la Tabla", true));
$xFRM->addHElem($xChk->get("TR.Actualizar", "forzar"));
$xFRM->addSubmit();
$xFRM->addToolbar($xBtn->getBasic("TR.Respaldo", "jsGetBackup()", "respaldo", "idgetrespaldo", false));
echo $xFRM->get();
?>
<script>
var xg = new Gen();
function jsGetBackup(){
var url = "http://localhost/utils/download.php?tabla=general_structure";
xg.w({ url : url, w : 800, h : 600 });
}
</script>
示例10: cHSelect
$jsVars .= "\t\$(\"#{$id}\").val();\n";
//options RAW
if ($options == "raw") {
if ($control == "hidden") {
if (trim($Boone->sql_select()->v()) != "" and trim($Boone->sql_select()->v()) != "NA") {
$control = "select";
} else {
$control = "text";
}
}
}
if ($Boone->valor()->v() == "primary_key") {
$hidden .= "<input type = \"hidden\" value=\"{$valor}\" name=\"{$id}\" id=\"{$id}\" />";
$proc = false;
if ($conTitulo == false) {
$xFRM->setTitle("{$titulo} : {$valor}");
$conTitulo = true;
}
}
if ($control == "hidden" and $proc == true) {
$hidden .= "<input type = \"hidden\" value=\"{$valor}\" name=\"{$id}\" id=\"{$id}\" />";
$proc = false;
}
if ($control == "select" and $proc == true) {
$xHSel = new cHSelect($id);
if ($Boone->tipo()->v() == "enum") {
$div = "|";
$Bdata = explode($div, $Boone->valor()->v());
$Cdata = array();
foreach ($Bdata as $clave => $valor) {
if (trim($valor) != "") {
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:frm8db7028bdcdf054882ab54f644a9d36b.php
示例11: header
if ($permiso === false) {
header("location:../404.php?i=999");
}
$_SESSION["current_file"] = addslashes($theFile);
//=====================================================================================================
$xHP = new cHPage("Reportes por Empresas", HP_FORM);
//$jxc = new TinyAjax();
//$jxc ->exportFunction('datos_del_pago', array('idsolicitud', 'idparcialidad'), "#iddatos_pago");
//$jxc ->process();
echo $xHP->getHeader();
$jsb = new jsBasicForm("mfrm", iDE_CAPTACION);
$jsb->show();
//$jxc ->drawJavaScript(false, true);
echo $xHP->setBodyinit();
$oFRM = new cHForm("frmTemplate", "./", "mfrm", "", "formoid-default");
$oFRM->setTitle("TR.Reportes por Empresas");
echo $xHP->setBodyEnd();
$xReports = new cPanelDeReportes(iDE_CREDITO, "empresas");
$xReports->get();
$rpts = new cGeneral_reports();
$sel3 = $xReports->getSelectReportes();
//$rpts->query()->html()->select( $rpts->descripcion_reports()->get(), " aplica='empresas' " );
$emp = new cSocios_aeconomica_dependencias();
$sel = $emp->query()->html()->select($emp->descripcion_dependencia()->get());
$sel->addOptions(array("todas" => "TODAS"));
$per = new cCreditos_periocidadpagos();
$sel4 = $per->query()->html()->select($per->descripcion_periocidadpagos()->get());
$sel4->addOptions(array("todas" => "TODAS"));
$pdto = new cCreditos_tipoconvenio();
$sel2 = $pdto->query()->html()->select($pdto->descripcion_tipoconvenio()->get());
$sel2->addOptions(array("todas" => "TODAS"));
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:empresas.reportes.frm.php