$nombre_madre = $action == 'EDIT' ? $data_madre['names'] : '';
if ($action == 'EDIT' || $action == 'INSERT') {
    Forms::printInput('TEXT', 'nombre_madre', $nombre_madre, 'mini', array('REQUIRED' => $property["FORMS"]["VALIDATION_GENERIC"]["REQUIRED_VALUE"]));
} elseif ($action == 'PREVIEW') {
    echo $data_madre['names'];
}
if ($action != 'PREVIEW') {
    ?>
 <span class="rojo">*</span><?php 
}
?>
                              </td>
                              <td>GRADO EDUCACION:</td>
                              <td><?php 
$object = new GradeEducation($db);
$catalogo = $object->getListGradeEducation();
?>
                                  <select name="GRADO_EDUCACION_MADRE">
                                      <option value="0">SELECCIONE UNA OPCION </option>
                                      <?php 
$grade_education = '';
if ($action == 'EDIT' || $action == 'PREVIEW') {
    $grade_education = $data_madre['grade_education'];
}
foreach ($catalogo as $item) {
    ?>
                                      
                                      <option value="<?php 
    echo $item['id'];
    ?>
" <?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;
?>
" class="dinamyc_container">
        $transaction = new Transaction($registry[$nameDataBase]);
        GradeEducation::setDataOperationBusiness($registry[$nameDataBase]);
        $idTransaction = $transaction->insertTransaction(array(GradeEducation::$business, GradeEducation::$update, GradeEducation::$descriptionBusiness));
        $data = array($_GET['DELETE']);
        $statusTransactionDB = $catalog->deleteGradeEducation($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->getListGradeEducation();
?>
<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"];
// 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 GradeEducation($registry[$nameDataBase]);
    $list = $element->getListGradeEducation($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>