コード例 #1
0
}
if ($action == 'EDIT' || $action == 'INSERT') {
    Forms::printInput('TEXT', 'fec_nac_madre', $fec_nac_madre, 'datePickerAny', array(), array(), $preview_flag);
} elseif ($action == 'PREVIEW') {
    $fec_nac_madre = $action == 'PREVIEW' ? $data_madre['bithday'] : '';
    if ($fec_nac_madre == "00/00/0000") {
        $fec_nac_madre = '';
    }
    echo $fec_nac_madre;
}
?>
                              </td>
                              <td>PROFESION:</td>
                              <td> <?php 
$object = new Profession($db);
$catalogo = $object->getListProfession();
?>
                                   <select name="PROFESSION_MADRE">
                                      <option value="0">SELECCIONE UNA OPCION</option>
                                      <?php 
$profession = '';
if ($action == 'EDIT' || $action == 'PREVIEW') {
    $profession = $data_madre['profession'];
}
foreach ($catalogo as $item) {
    ?>
                                      
                                      <option value="<?php 
    echo $item['id'];
    ?>
" <?php 
コード例 #2
0
        $transaction = new Transaction($registry[$nameDataBase]);
        Profession::setDataOperationBusiness($registry[$nameDataBase]);
        $idTransaction = $transaction->insertTransaction(array(Profession::$business, Profession::$update, Profession::$descriptionBusiness));
        $data = array($_GET['DELETE']);
        $statusTransactionDB = $catalog->deleteProfession($data, $idTransaction);
        if ($statusTransactionDB > 0) {
            Forms::setMessage('SUCCESS', $v_label["SHORT_MESSAGE_OK_DELETE"], $v_label["DETAIL_MESSAGE_OK_DELETE"]);
        } else {
            Forms::setMessage('ERROR', $v_label["SHORT_MESSAGE_NOOK_DELETE"], $v_label["DETAIL_MESSAGE_NOOK_DELETE"]);
        }
        break;
    default:
        break;
}
// Obtener lista
$list = $catalog->getListProfession();
?>
<div class="grid_10">
    <div class="box round first">
        <h2><?php 
echo $v_label["TITLE"];
?>
</h2>


        <?php 
include "view/wallejlla/templates/tpl_messages_1.php";
?>
 
        <h5><?php 
echo $v_label["TITLE_LIST"];
コード例 #3
0
// Decidir en funcion a la accion
$title_1 = $v_label["NEW_TITLE"];
// INSERT
$action = 'INSERT';
if (isset($_GET['EDIT'])) {
    $action = 'EDIT';
    $title_1 = $v_label["EDIT_TITLE"];
    $elementAction = $_GET['EDIT'];
} elseif (isset($_GET['PREVIEW'])) {
    $action = 'PREVIEW';
    $title_1 = $v_label["PREVIEW_TITLE"];
    $elementAction = $_GET['PREVIEW'];
}
if ($action != 'INSERT') {
    $element = new Profession($registry[$nameDataBase]);
    $list = $element->getListProfession($elementAction);
    $data = $list[0];
}
// simplificar acceso a etiquetas de formulario
$v_label_gral_form = $property["pages"]["general_form"];
?>




<div class="grid_10">
    <div class="box round first">
        <h2><?php 
echo $title_1;
?>
</h2>
コード例 #4
0
 
<?php 
$numero = 1;
if (isset($_GET['NUMBER'])) {
    $numero = $_GET['NUMBER'];
}
$id = 1;
if (isset($_GET['ID'])) {
    $id = $_GET['ID'];
}
$action = 'INSERT';
if (isset($_GET['ACTION']) && $_GET['ACTION'] == 'EDIT') {
    $action = 'EDIT';
}
$profesion = new Profession($db);
$catalogo1 = $profesion->getListProfession();
$grade = new GradeEducation($db);
$catalogo2 = $grade->getListGradeEducation();
//print_r($catalogo2);
$pk_id_person_profession = 0;
$pk_id_profession = 0;
$pk_id_grade_education = 0;
if ($action == 'EDIT') {
    $pk_id_person_profession = $_GET['pk_id_person_profession'];
    $pk_id_profession = $_GET['pk_id_profession'];
    $pk_id_grade_education = $_GET['pk_id_grade_education'];
}
?>

<div id="profesion_din_<?php 
echo $numero;