当前位置: 首页>>代码示例>>PHP>>正文


PHP Util::getSelect方法代码示例

本文整理汇总了PHP中Util::getSelect方法的典型用法代码示例。如果您正苦于以下问题:PHP Util::getSelect方法的具体用法?PHP Util::getSelect怎么用?PHP Util::getSelect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Util的用法示例。


在下文中一共展示了Util::getSelect方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getSelect

 function getSelect($id, $name = null)
 {
     if ($name === null) {
         $name = $id;
     }
     $array = array(10 => "10 rpp", 50 => "50 rpp", 100 => "100 rpp");
     Util::getSelect($name, $array, $this->rpp, false, "", $id);
 }
开发者ID:jjorgosogarcia,项目名称:gestorUsuarios,代码行数:8,代码来源:Pager.php

示例2: getSelect

 function getSelect($id, $name = null)
 {
     if ($name === null) {
         $name = $id;
     }
     $parametros = [10 => "10 rpp", 50 => "50 rpp", 100 => "100 rpp"];
     return Util::getSelect($name, $parametros, $this->rpp, false, "", $id);
 }
开发者ID:JuanManuelOlalla,项目名称:usuarios,代码行数:8,代码来源:Pager.php

示例3: getSelect

 function getSelect($id, $name = null)
 {
     //construir el select con 10,50,100
     if ($name === null) {
         $name = $id;
     }
     $array = array(10 => "10 rpp", 50 => "50 rpp", 100 => "100 rpp");
     return Util::getSelect($name, $array, $this->rpp, false, "", $id);
 }
开发者ID:Mariangeles94,项目名称:gestion_usuarios,代码行数:9,代码来源:Pager.php

示例4: getSelect

 function getSelect($id, $name = null)
 {
     if ($id !== null) {
         $id = "id = '{$id}'";
     } else {
         $id = "";
     }
     $array = array("10" => 10, "50" => 50, "100" => 100);
     return Util::getSelect($name, $array, $this->rpp, true, "", $id);
 }
开发者ID:izvDavid2015,项目名称:GestionDeUsuarios,代码行数:10,代码来源:Page.php

示例5: getSelect

 function getSelect($id, $name = null)
 {
     //Construir el select/option con 10/50/100 registro por página
     //que seleccion el valor que tengo habilitado
     //id es el id que le vamos a dar al <select> y name el name. si no hay name será el mismo que el id
     if ($name === null) {
         $name = $id;
     }
     $array = array(10 => "10 rpp", 50 => "50 rpp", 50 => "100 rpp");
     return Util::getSelect($name, $array, $this->rpp, false, "", $id);
 }
开发者ID:Miguelfdez79,项目名称:wusuario,代码行数:11,代码来源:Pager.php

示例6: getSelect

 function getSelect($id, $name = null)
 {
     /*
      * Selecciona el número de registros por página.
      * Construye el botón básicamente, o el Select (options)
      */
     if ($name === null) {
         $name = $id;
     }
     $array = array(10 => "10", 50 => "50", 100 => "100");
     return Util::getSelect($name, $array, $this->rpp, false, "", $id);
 }
开发者ID:HaruIjima-kun,项目名称:DWES,代码行数:12,代码来源:Paginacion.php

示例7: getSelectFull

 function getSelectFull($id, $name = null, $params = array())
 {
     if ($name === null) {
         $name = $id;
     }
     $array = ["10" => "10", "50" => "50", "100" => "100"];
     $r = "<form style='display: inline;' method='get' id='{$id}' name='{$name}'>";
     $r .= Util::getSelect("nrpp", $array, $this->nrpp, false);
     foreach ($params as $key => $value) {
         if ($key !== "nrpp") {
             $r .= "<input type='hidden' name='{$key}' value='{$name}'/>";
         }
     }
     $r .= "<input type='submit' value='ver' />";
     $r .= "</form>";
 }
开发者ID:davidgamarra,项目名称:DWESI_Practice4_UserManager,代码行数:16,代码来源:Pager.php

示例8:

    </head>
    <body>
        <!-- aqui van los dialogos -->
        <!-- Modal -->
        <div class="modal fade modal-form" id="formularioInsertar" role="dialog">
            <div class="modal-dialog">

        <!-- Modal content-->
                <div class="modal-content">
                    <div class="modal-header">
                        <form id="formInsertar" >
                            Nombre
                            <input type="text" id="Name" value="" /><hr>
                            Pais
                            <?php 
echo Util::getSelect("CountryCode", $gestorCountry->getValuesSelect());
?>
<br/>
                            Distrito
                            <input type="text" id="District" value="" /><hr>
                            Poblacion
                            <input type="number" id="Population" value="" /><hr>
                            <input type="hidden" id="ID" value="" /><hr>
                        </form>
                    </div>
                    <div id="mensajeInsertar" ></div>
                    <div class="modal-footer">
                        <button id="btInsertar" type="button" class="btn btn-default" >Insert</button>
                        <button id="btEditar" type="button" class="btn btn-default" >Edit</button>
                        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                    </div>
开发者ID:daw2015,项目名称:plantillas,代码行数:31,代码来源:index.php

示例9: min

">Anterior</a>
                        <a href="?page=<?php 
echo min($page + 1, $pages) . $trozoEnlace;
?>
">Siguiente</a>
                        <a href="?page=<?php 
echo $pages . $trozoEnlace;
?>
">Último</a>
                        <form style="display: inline;" action="?<?php 
echo $trozoEnlace;
?>
">
                            <?php 
$array = ["10" => "10", "50" => "50", "100" => "100"];
echo Util::getSelect("rpp", $array, 10, false);
?>
                            <input type="submit" value="ver" />
                        </form>
                    </td>
                </tr>
            </tfoot>
            <tbody>
                <?php 
foreach ($multimedias as $indice => $multimedia) {
    ?>
                    <tr>
                        <td><figure><img src="<?php 
    echo $multimedia->getImg_portada();
    ?>
" /></figure></td>
开发者ID:HaruIjima-kun,项目名称:DWES,代码行数:31,代码来源:index.php

示例10:

                                <div class="panel-heading">
                                    Prestar Juego
                                </div>
                                <!-- /.panel-heading -->
                                <div class="panel-body">
                                    <div class="dataTable_wrapper">

                                        <form class="form" action="phpalta.php" method="POST">
                                            <label for="dni">Seleccione un Usuario</label>
                                            <?php 
echo Util::getSelect("dni", $gestorUsuario->getValuesSelect());
?>
<br>
                                             <label for="idjuego">Seleccione un Juego</label>
                                            <?php 
echo Util::getSelect("idjuego", $gestorLudoteca->getValuesSelect());
?>
<br>
                                            <label for="fechaePrestamo">Fecha Prestamo</label>
                                            <input type="date" name="fechaPrestamo" value="" /><br>
                                            <label for="fechaeDevolucion">Fecha Devolucion</label>
                                            <input type="date" name="fechaDevolucion" value="" /><br>
                                            <input type="submit" value="Prestar" />
                                        </form>
                                    </div>
                                    <!-- /.table-responsive -->

                                </div>
                                <!-- /.panel-body -->
                            </div>
                            <!-- /.panel -->
开发者ID:ealvarez1990,项目名称:ludoteca,代码行数:31,代码来源:viewAlta.php

示例11:

                                <!-- /.panel-heading -->
                                <div class="panel-body">
                                    <div class="dataTable_wrapper">

                                        <form action="phpedit.php" method="POST">
                                            <input class="form-group input-group" type="text" name="nombre" value="<?php 
echo $usuario->getNombre();
?>
" />
                                            <input class="form-group input-group" type="text" name="apellidos" value="<?php 
echo $usuario->getApellidos();
?>
" />
                                             <label for="idhabitacion">Habitacion: </label>
                                            <?php 
echo Util::getSelect("idhabitacion", $gestorHabitacion->getValuesSelect());
?>
<br>
                                            <input class="form-group input-group" type="hidden" name="pkdni" value="<?php 
echo $dni;
?>
" />
                                            <input class="btn btn-success" type="submit" value="Editar Usuario" />
                                         </form>
                                    </div>
                                    <!-- /.table-responsive -->

                                </div>
                                <!-- /.panel-body -->
                            </div>
                            <!-- /.panel -->
开发者ID:ealvarez1990,项目名称:ludoteca,代码行数:31,代码来源:viewEdit.php

示例12:

    </head>
    <body>
        <div id="fondocontenido"></div>
        <div id="cont">
        <form action="phpinsert.php" method="POST"><br/><br/>
            <h1 class="titulo">Insertar un nuevo animal al ZOO!</h1>
            Nombre: <input type="text" name="NombreAnimal" value="" /><br/><br/>
            Familia: <input type="text" name="Familia" value="" /><br/><br/>
            Peligro Extinción: Sí<input type="radio" name="PeligroExt" value="S" />No<input type="radio" name="PeligroExt" value="N" /><br/><br/>
            Edad: <input type="number" name="Edad" value=""/><br><br/>
            Cuidador: <?php 
echo Util::getSelect("CuidadorCode", $gestorCuidador->getValuesSelect());
?>
<br/><br/>
            Zona Destinado: <?php 
echo Util::getSelect("ZonaCode", $gestorZona->getValuesSelect());
?>
<br/><br/>
            <input type="submit" value="edicion"/>
        </form>
        <a href="index.php" class="atras">Cancelar y volver atrás</a>
        </div>
        <div id="enlacesIndex">
            <a href="index.php">Animales</a>
            <a href="../zona/index.php">Zonas</a>
            <a href="../cuidador/index.php">Cuidadores</a>
        </div>
        <h1 class="zoocarlitos">
            <span class="b1">z</span>
            <span class="b3">o</span>
            <span class="b2">O</span>
开发者ID:jcfuentes102,项目名称:ZOO,代码行数:31,代码来源:viewinsert.php

示例13:

            Fecha <input type="date" name="fecha" value="<?php 
echo $evento->getFecha();
?>
"/></br><br>
            Artista<?php 
$numID0 = $evento->getID_artista();
$artista = (int) $numID0;
echo Util::getSelect("ID_artista", $gestorArtista->getValuesSelect(), $artista, $blanco = false);
?>
<br><br>
            Lugar<?php 
$numID1 = $evento->getID_lugar();
$lugar = (int) $numID1;
echo Util::getSelect("ID_lugar", $gestorLugar->getValuesSelect(), $lugar, $blanco = false);
?>
<br><br>
            Tipo Evento<?php 
$numID2 = $evento->getNombre_tipo();
$tipo = (int) $numID2;
echo Util::getSelect("nombre_tipo", $gestorTipo->getValuesSelect(), $tipo, $blanco = false);
?>
<br><br>
            <input type="submit" value="edicion"/>
        </form>



    </body>
</html>
<?php 
$bd->close();
开发者ID:EvaGarzonBeltran,项目名称:entradas,代码行数:31,代码来源:editarValoresEvento.php

示例14:

?>
" /><br/><br/>
           Peligro Extinción(S ó N):<input type="Text" name="PeligroExt" value="<?php 
echo $animal->getPeligroExt();
?>
" /><br/><br/>
           Edad: <input type="number" name="Edad" value="<?php 
echo $animal->getEdad();
?>
" /><br/><br/>
           Zona: <?php 
echo Util::getSelect("ZonaCode", $gestorZona->getValuesSelect());
?>
<br/><br/>
           Cuidador: <?php 
echo Util::getSelect("CuidadorCode", $gestorCuidador->getValuesSelect());
?>
<br/><br/>
           <input type="hidden" name="pkID" value="<?php 
echo $animal->getID();
?>
" /><br/><br/>

           <input type="submit" value="edicion"/>
        </form>
        <a href="index.php" class="atras">Cancelar y volver atrás</a>
        </div>
        <div id="enlacesIndex">
            <a href="index.php">Animales</a>
            <a href="../zona/index.php">Zonas</a>
            <a href="../cuidador/index.php">Cuidadores</a>
开发者ID:jcfuentes102,项目名称:ZOO,代码行数:31,代码来源:viewedit.php

示例15: array

" >Actualizar</a></td>
                    </tr>
                <?php 
}
?>
            </table>
        </div>
        <form action="#" method="get" >
            <?php 
echo $page->getSelect("select", "nrpp");
?>
            </br>
            <?php 
$array = array();
for ($i = 0; $i < $page->getPaginas(); $i++) {
    $array[$i] = $i;
}
echo Util::getSelect("paginaActual", $array, $gestor->getCount());
?>
            </br>
            <input type="submit" value="Filtrar" />
        </form>
        
        <a class="volver" href="entorno.php" >
            <img alt="Foto" src="../img/return.png" />
        </a>
        <a href="phpcerrarsesion.php" class="volver" >Cerrar sesion.</a>
    </body>
</html>
<?php 
$bd->close();
开发者ID:izvDavid2015,项目名称:GestionDeUsuarios,代码行数:31,代码来源:listar.php


注:本文中的Util::getSelect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。