當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。