本文整理汇总了PHP中Empresa::Load_all方法的典型用法代码示例。如果您正苦于以下问题:PHP Empresa::Load_all方法的具体用法?PHP Empresa::Load_all怎么用?PHP Empresa::Load_all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Empresa
的用法示例。
在下文中一共展示了Empresa::Load_all方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Empresa
" size="15" />
<img src="../images/b_calendar.png" alt="Calendario" name="fechaIMG" width="16" height="16" id="fechaIMG" /> Fecha Final</td>
</tr>
</table>
<table align='center', width='30%'>
<!-- Empresa -->
<tr><td colspan='2' align='left'> </td><tr>
<tr>
<td colspan='1' align='right'>Empresa:</td>
<td colspan='1' align='left'>
<select name="empresalist" id="empresalist">
<option name="Todas" id="Todas" value="Todas">Todas</option>
<?php
$empresalist = new Empresa();
foreach ($empresalist->Load_all() as $arrE) {
?>
<option name="<?php
echo $arrE['e_codigo'];
?>
" id="<?php
echo $arrE['e_codigo'];
?>
" value="<?php
echo $arrE['e_id'];
?>
"><?php
echo $arrE['e_nombre'] . ' - ' . $arrE['e_codigo'];
?>
</option>
<?php
示例2: Muestra
//.........这里部分代码省略.........
if ($idDirGral == $Usu->Get_dato("idfwk_usuario")) {
error_log("Es un director general?" . $Usu->Get_dato("director_general"));
?>
<tr>
<td align="right" width="30%">
Director General:
</td>
<?php
if ($Usu->Get_dato("director_general") == 0) {
?>
<td>
<input type="checkbox" id="dirgeneral" name="dirgeneral" />
</td>
<?php
} else {
?>
<td>
<input type="checkbox" id="dirgeneral" name="dirgeneral" checked/>
</td>
<?php
}
?>
</tr>
<?php
}
?>
<tr>
<td align="right" width="30%">
Empresa: </td>
<td>
<?php
$empresa = new Empresa();
$arr = $empresa->Load_all_activas();
?>
<select name="empresa_id" id="empresa_id">
<?php
error_log(count($arr));
if (count($arr) <= 0) {
$arr2 = $empresa->Load_all();
foreach ($arr2 as $arrE) {
if ($Usu->Get_dato("u_empresa") == $arrE['e_id']) {
?>
<option value=<?php
echo $arrE['e_codigo'];
?>
><?php
echo $arrE['e_codigo'];
?>
</option>
<?php
}
}
?>
<?php
} else {
foreach ($arr as $arrE) {
?>
<option name="<?php
echo $arrE['e_codigo'];
?>
" id="<?php
echo $arrE['e_codigo'];
?>
"
示例3: Empresa
<option value="1">BMW</option>
<option value="0">EXTERNOS</option>
</select>
</td>
</tr>
<?php }?>
<!-- Empresa -->
<tr>
<td colspan='1' align='right' style="left:20px;">Empresa:</td>
<td colspan='2' align="left" style="top:100px;">
<?php $empresa = new Empresa(); ?>
<select name="EmpresaOpciones" id="EmpresaOpciones" onChange="obtener_cecos(this.value)">
<option name="EmpresaOpciones" id="EmpresaOpciones" value="Seleccione una Empresa">
Seleccione una Empresa
</option>
<?php foreach($empresa->Load_all() as $arrE){ ?>
<option name="EmpresaOpciones" id="EmpresaOpciones" value="<?php echo $arrE['e_id'];?>">
<?php echo $arrE['e_nombre'];?>
</option>
<?php } ?>
</select>
</td>
</tr>
<!-- CECOS -->
<tr>
<td colspan='1' align='right' >CECO:</td>
<td colspan="2">
<?if($_SESSION['reporte']== "Reporte de Gastos"){?>
<select name="CecoOpciones" id="CecoOpciones" onChange="">
<?php }else if($_SESSION['reporte']== "Reporte de Anticipos no comprobados"){?>
<select name="CecoOpciones" id="CecoOpciones" onChange="obtener_empleado(this.value)" >
示例4: Muestra
function Muestra()
{
$I = new Interfaz("Usuarios:: Nuevo Usuario", true);
?>
<style type="text/css">
<!--
.Estilo1 {color: #FF0000}
-->
</style>
<br><br>
<form name="form1" method="post"/>
<table width="80%" align="center" cellpadding="4" cellspacing="4" border="0" bgcolor="#f4f4f4" style="padding-top: 20px;">
<tr>
<td align="right"> </td>
<td><strong>Información de acceso al sistema</strong></td>
</tr>
<tr>
<td align="right" width="30%"> Nombre Completo<span class="Estilo1">*</span>: </td><td> <input type="text" name="nombre" id="nombre" size="70" /> </td></tr>
<tr>
<td align="right" width="30%"> Usuario<span class="Estilo1">*</span>: </td><td> <input type="text" name="user" id="user" size="40"/>
</td>
</tr>
<tr>
<td align="right" width="30%"> Contraseña<span class="Estilo1">*</span>: </td>
<td> <input type="password" name="passwd" id="passwd" size="40"/> </td>
</tr>
<tr>
<td align="right" width="30%"> Contraseña<span class="Estilo1">*</span>: </td>
<td> <input type="password" name="passwd2" id="passwd2" size="40" /> </td>
</tr>
<tr>
<td align="right" width="30%">
E-mail<span class="Estilo1">*</span>:
</td>
<td>
<input type="text" name="email" id="email" size="40" />
</td>
</tr>
<tr>
<td align="right" width="30%">
Tipo de usuario:
</td>
<td>
<?php
$Usu = new Usuario();
?>
<select id="tipoUser" name="tipoUser" >
<?php
foreach ($Usu->Load_tipo_usuario() as $datos) {
if ($datos['tu_id'] == 1 || $datos['tu_id'] == 2 || $datos['tu_id'] == 5) {
?>
<option value="<?php
echo $datos['tu_id'];
?>
"><?php
echo $datos['tu_nombre'];
?>
</option>
<?php
}
}
?>
</select>
</td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td align="right"> </td>
<td><strong>Información del Empleado</strong></td>
</tr>
<tr>
<td align="right" width="30%">
Empresa<span class="Estilo1">*</span>: </td>
<td>
<?php
$empresa = new Empresa();
?>
<select name="empresa_id" id="empresa_id">
<?php
foreach ($empresa->Load_all() as $arrE) {
?>
<option name="empresa_id" id="empresa_id" value="<?php
echo $arrE['e_id'];
?>
">
<?php
echo $arrE['e_codigo'];
?>
</option>
<?php
}
?>
</select>
</td>
</tr>
<!--
//.........这里部分代码省略.........