本文整理汇总了PHP中Empresa::Load_all_activas方法的典型用法代码示例。如果您正苦于以下问题:PHP Empresa::Load_all_activas方法的具体用法?PHP Empresa::Load_all_activas怎么用?PHP Empresa::Load_all_activas使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Empresa
的用法示例。
在下文中一共展示了Empresa::Load_all_activas方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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'];
?>
"
示例2: Muestra
//.........这里部分代码省略.........
<table width="80%" align="center" cellpadding="4" cellspacing="4" border="0" bgcolor="#f4f4f4" style="padding-top: 20px;">
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td align="right"> </td>
<td><strong>Información del Empleado</strong></td>
</tr>
<?php
$idDirGral = $Usu->Load_dir_general();
if ($idDirGral == 0) {
?>
<tr>
<td align="right" width="30%">
Director General:
</td>
<td>
<input type="checkbox" id="dirgeneral" name="dirgeneral"/>
</td>
</tr>
<?php
}
?>
<tr>
<td align="right" width="30%">
Empresa: </td>
<td>
<?php
$empresa = new Empresa();
?>
<select name="empresa_id" id="empresa_id">
<?php
foreach ($empresa->Load_all_activas() 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>
<!--
<tr>
<td align="right">Departamento<span class="Estilo1">*</span>:</td>
<td><input type="text" name="depto" id="depto" size="40" /></td>
</tr>
-->
<tr>
<td align="right">Centro de Costos :</td>
<td> <select name='ceco_id'>
<?php
$query = sprintf("SELECT cc_id, cc_centrocostos, cc_nombre FROM cat_cecos c WHERE cc_estatus = 1");
$var = mysql_query($query);
while ($arr = mysql_fetch_assoc($var)) {
echo sprintf("<option value='%s'>%s - %s</option>", $arr['cc_id'], $arr['cc_centrocostos'], $arr['cc_nombre']);
}
?>