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


PHP DAOFactory::getTblEmpleadoDAO方法代码示例

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


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

示例1:

    $( "#datepicker_2" ).datepicker();
  });
</script>
</head>    
<body>
<div id="content">
<form method="post" action="../controlador/agregarReconocimiento.php" class="formularios">
  <ul>
    <li>
         <h2>Reconocimiento a Empleados</h2>
    </li>
    <li>
         <label for="empleado_reconocimiento" class ="labelNormal">Empleado:</label>
         <select name="empleado_reconocimiento">
         <?php 
$empleados = DAOFactory::getTblEmpleadoDAO()->queryAll();
for ($i = 0; $i < count($empleados); $i++) {
    $fila = $empleados[$i];
    echo '<option value="' . $fila->idEmpleado . '">' . $fila->apellido . ', ' . $fila->nombre . '</option>';
}
?>
         </select>
    </li>
    <li>
        <label for="descripcion_reconocimiento" class ="labelNormal">Descripcion:</label>
        <textarea name="descripcion_reconocimiento" cols="40" rows="6"></textarea>
    </li>
    <li>
    <button class="submit" type="submit" value="enviar">Guardar</button>
    </li>
</ul>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_agregarReconocimiento.php

示例2: Transaction

$transaction = new Transaction();
$empleado = new TblEmpleado();
$empleado->nombre = strtoupper($_POST['nombre_empleado']);
$empleado->apellido = strtoupper($_POST['apellido_empleado']);
$empleado->sexoempleado = $_POST['sexo_empleado'];
$empleado->dui = $_POST['dui_empleado'];
$empleado->nit = $_POST['nit_empleado'];
$empleado->isss = $_POST['isss_empleado'];
$empleado->afp = $_POST['afp_empleado'];
$empleado->cuenta = $_POST['numerocuenta_empleado'];
$empleado->salario = $_POST['salario_empleado'];
$fecha = $_POST['fecha_ano'] . '-' . $_POST['fecha_mes'] . '-' . $_POST['fecha_dia'];
//$fecha = date("Y-m-d", strtotime($fecha) );
$empleado->fechaNacimiento = $fecha;
$empleado->idPuestoTrabajo = $_POST['puesto_empleado'];
DAOFactory::getTblEmpleadoDAO()->insert($empleado);
$usuario = new TblUsuario();
$apellido1 = explode(" ", $empleado->apellido);
$fecha1 = explode("-", $fecha);
$usuario->usuario = strtoupper(substr($empleado->nombre, 0, 1) . $apellido1[0]) . $fecha1[2];
$usuario->idEmpleado = $empleado->idEmpleado;
$usuario->contrasena = md5($usuario->usuario);
$usuario->privilegio = 5;
DAOFactory::getTblUsuarioDAO()->insert($usuario);
$transaction->commit();
echo '<script language="JavaScript" type="text/javascript">

var pagina="../vista/form_agregarEmpleado.php";
alert("Usuario:' . $usuario->usuario . '");
function redireccionar() 
{
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:agregarEmpleado.php

示例3:

<body>
<div class="datagrid">
<form method="post" action="form_editarEmpleado.php">
<table>
<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>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_listaEmpleado.php

示例4:

<?php

require_once '../modelo/include_dao.php';
require_once 'menu.php';
?>
<html>
<head>
	<link rel="stylesheet" href="form_detalleEmpelado.css">
</head>
<body>
<?php 
$empleadoid = $_GET['id'];
$empleado = DAOFactory::getTblEmpleadoDAO()->load($empleadoid);
?>
<table width="75%" align="center" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<fieldset>
<legend> Informacion General </legend>
<table>
<tr>
<td><label class="labelNormal">Nombres:</label></td>
<td><label><?php 
echo $empleado->nombre . ' ' . $empleado->apellido;
?>
</label></td>
</tr>
<tr>
<td><label class="labelNormal">DUI:</label></td>
<td><label><?php 
echo $empleado->dui;
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_detalleEmpleado.php


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