本文整理汇总了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>
示例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");
示例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>
示例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>
示例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;