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


PHP FormHelper::selectFromTable方法代碼示例

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


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

示例1: array

    <label>Cliente</label>
    <br/>
    <?php 
    echo $cont['nome'];
    echo $cont['email'] != "" ? "<br/><a href='mailto:" . $cont['email'] . "'>" . $cont['email'] . "</a>" : "";
    echo $cont['telefone'] != "" ? "<br/>" . $cont['telefone'] : "";
    ?>
    <br/>
    <input type="hidden" name="contato_id" id="contato_id" value="<?php 
    echo $r['contato_id'];
    ?>
"/>
    <?php 
    //FormHelper::selectFromTable('contato.id','nome','Contato',$r['contato_id'],array(),array('id'=>$r['contato_id']));
} else {
    FormHelper::selectFromTable('contato.id', 'nome', 'Contato', $cliente, array('validation' => array('regex' => FormHelper::IS_SELECTED, 'message' => 'Selecione um <strong>contato</strong>.')), array('cliente_id' => $cliente));
}
?>
<div class="row">
    <div class="col-md-6">
        <?php 
FormHelper::input('valor', 'Valor', $r['valor'], array());
?>
    </div>
    <div class="col-md-6">
        <?php 
FormHelper::input('custo', 'Custo', $r['custo'], array());
?>
    </div>
</div>
<input type='hidden' value='0' id="finalizar" name='finalizar'/>
開發者ID:neurosoftbrasil,項目名稱:adminns,代碼行數:31,代碼來源:editar.php

示例2: array

<div class="modal-header"><h2>Inserir endereço</h2></div>  
<div class="modal-body">
    <?php 
$cep = Request::value('cep');
$logradouro = Request::value('logradouro');
$numero = Request::value('numero');
$bairro = Request::value('bairro');
$cliente_endereco_tipo_id = Request::value('cliente_endereco_tipo_id');
$cidade = Request::value('cidade');
$estado = Request::value('estado');
FormHelper::create('formEndereco');
?>
            <div class="row">
                <div class="col-md-12">
                    <?php 
FormHelper::selectFromTable('cliente_endereco_tipo.id', 'descricao', 'Tipo de contato', $cliente_endereco_tipo_id);
?>
                </div>
            </div>
            <div class="row">
                <div class="col-md-5">
        <?php 
FormHelper::input('cep', 'CEP', $cep, array('placeholder' => 'Digite o CEP', 'onkeyup' => 'App.Endereco.BuscarCep(this.value)'));
?>
                </div><br/>
                <div id="cepinvalido" class="col-md-5 well-sm alert-danger hide">
                    <span class="glyphicon glyphicon-remove-circle"></span> CEP inválido.
                </div>
            </div>
            <div class="row">
                <div class="col-md-7">
開發者ID:neurosoftbrasil,項目名稱:adminns,代碼行數:31,代碼來源:inserir.php


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