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


PHP DAOFactory::getTblPuestoTrabajoDAO方法代码示例

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


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

示例1: error_reporting

<html>
<head>
</head>
<body>
<?php 
error_reporting(E_ALL);
ini_set('display_errors', '1');
require_once '../modelo/include_dao.php';
$q = intval($_GET['q']);
$puestos = DAOFactory::getTblPuestoTrabajoDAO()->queryByIdDepartamento($q);
//echo '<select name="puesto_empleado" id="puesto">';
for ($i = 0; $i < count($puestos); $i++) {
    $row = $puestos[$i];
    echo '<option value="' . $row->idPuestoTrabajo . '">' . $row->nombre . '</option>';
}
//echo '</select>';
?>
</body>
</html>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:19,代码来源:puestos.php

示例2: error_reporting

<?php

error_reporting(E_ALL);
ini_set('display_errors', '1');
require_once '../modelo/include_dao.php';
$transaction = new Transaction();
$puesto = new TblPuestoTrabajo();
$puesto->nombre = $_POST['nombre_puestoTrabajo'];
$puesto->descripcion = $_POST['descripcion_puestoTrabajo'];
$puesto->salarioMin = $_POST['salarioMin_puestoTrabajo'];
$puesto->salarioMax = $_POST['salarioMax_puestoTrabajo'];
$puesto->idDepartamento = $_POST['idDepartamento_puestoTrabajo'];
DAOFactory::getTblPuestoTrabajoDAO()->insert($puesto);
$transaction->commit();
echo 'Puesto agregado con exito';
header("Location: ../vista/menu.php");
开发者ID:hrenza07,项目名称:pribantsa,代码行数:16,代码来源:agregarPuestoTrabajo.php

示例3:

         <label for="nombre_bono" class ="labelNormal">Nombre:</label>
         <input type="text" name="nombre_bono" />
    </li>
    <li>
         <label for="monto_bono" class ="labelNormal">Monto:</label>
         <input type="number" max="500" name="monto_bono" id="monto_bono" onkeydown="deshabilitarPorcentaje();"/>
    </li>
    <li>
         <label for="porcentaje_bono" class ="labelNormal">Porcentaje:</label>
         <input type="number" min="0" max="100" name="porcentaje_bono" id="porcentaje_bono" onkeydown="deshabilitarMonto();"/>%
    </li>
    <li>
         <label for="puesto_puestoTrabajo" class ="labelNormal">Puesto:</label>
         <select name="puesto_puestoTrabajo">
        <?php 
$puestos = DAOFactory::getTblPuestoTrabajoDAO()->queryAll();
for ($i = 0; $i < count($puestos); $i++) {
    $fila = $puestos[$i];
    echo '<option value=' . $fila->idPuestoTrabajo . '>' . $fila->nombre . '</option>';
}
?>
         </select>
    </li>
    <li>
    <button class="submit" type="submit" value="enviar">Guardar</button>
    </li>
</ul>
</form>
</div>
</body>
</html>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_agregarBono.php

示例4:

<thead>
<tr>
<th>ID</th>
<th>Empleado</th>
<th>Departamento</th>
<th>Puesto Trabajo</th>
<th>Opciones</th>
</tr>
</thead>
<tbody>
<?php 
$empleado = DAOFactory::getTblEmpleadoDAO()->queryAllOrderBy("apellido");
for ($i = 0; $i < count($empleado); $i++) {
    $row = $empleado[$i];
    echo '<tr>';
    echo '<td>' . $row->idEmpleado . '</td>';
    echo '<td>' . $row->apellido . ', ' . $row->nombre . '</td>';
    $puesto = DAOFactory::getTblPuestoTrabajoDAO()->load($row->idPuestoTrabajo);
    $departamento = DAOFactory::getTblDepartamentoDAO()->load($puesto->idDepartamento);
    echo '<td>' . $departamento->nombre . '</td>';
    echo '<td>' . $puesto->nombre . '</td>';
    echo '<td><a href="form_detalleEmpleado.php?id=' . $row->idEmpleado . '">Detalles</a></td>';
    echo '</tr>';
}
?>
</tbody>
</table>
</form>
</div>
</body>
</html>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_listaEmpleado.php

示例5:

<td><label class="labelNormal">Fecha Naciemieto:</label></td>
<td><label><?php 
echo $empleado->fechaNacimiento;
?>
</label></td>
</tr>
</table>
</fieldset>
</td>
</tr>
<tr>
<td>
<fieldset>
<legend> Organizacion </legend>
<?php 
$puesto = DAOFactory::getTblPuestoTrabajoDAO()->load($empleado->idPuestoTrabajo);
$departamento = DAOFactory::getTblDepartamentoDAO()->load($puesto->idDepartamento);
?>

<table>
<tr>
<td><label class="labelNormal">Departamento:</label></td>
<td><label><?php 
echo $departamento->nombre;
?>
</label></td>
</tr>
<tr>
<td><label class="labelNormal">Puesto:</label></td>
<td><label><?php 
echo $puesto->nombre;
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_detalleEmpleado.php


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