/**
  * This is construct base of the class.
  *
  * A public constructor; initializes the variable $instanceDataBase.
  *
  */
 public function __construct($instanceDataBase)
 {
     parent::__construct($instanceDataBase);
     TypeIdentifyDoc::setDataOperationBusiness($instanceDataBase);
     TypeIdentifyDoc::getBusiness();
     TypeIdentifyDoc::getDescriptionBusiness();
 }
                              <?php 
$ci_socio = $action == 'EDIT' ? $data['ci_socio'] : '';
if ($action == 'EDIT' || $action == 'INSERT') {
    Forms::printInput('TEXT', 'ci_socio', $ci_socio, 'mini', array('REQUIRED' => $property["FORMS"]["VALIDATION_GENERIC"]["REQUIRED_VALUE"]));
} elseif ($action == 'PREVIEW') {
    echo $data['ci_socio'];
}
if ($action != 'PREVIEW') {
    ?>
 <span class="rojo">*</span><?php 
}
?>
                              </td>
                              <td>TIPO DOCUMENTO:</td>
                              <td><?php 
$object = new TypeIdentifyDoc($db);
$catalogo = $object->getListTypeIdentifyDoc();
$itemsSelect = array();
foreach ($catalogo as $item) {
    $itemsSelect[$item['id']] = $item['name'];
}
$itemsSelect['0'] = 'SELECCIONE UNA OPCION';
$type_identify_doc = '';
if ($action == 'EDIT' || $action == 'PREVIEW') {
    $type_identify_doc = $data['TYPE_IDENTIFY_DOCUMENT'];
}
Forms::printInput('SELECT', 'TYPE_IDENTIFY_DOCUMENT', $type_identify_doc, 'select_requerido', array(), $itemsSelect);
?>
                              <?php 
if ($action != 'PREVIEW') {
    ?>
$v_label = $property["pages"]["person/type_identify_doc"];
// 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 TypeIdentifyDoc($registry[$nameDataBase]);
    $list = $element->getListTypeIdentifyDoc($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;
?>
                }
            }});

    });
</script>
<?php 
$action = 'LIST';
if (isset($_POST['ACTION'])) {
    $action = $_POST['ACTION'];
} else {
    if (isset($_GET['ACTION'])) {
        $action = $_GET['ACTION'];
    }
}
$user = new User($registry[$nameDataBase]);
$catalog = new TypeIdentifyDoc($registry[$nameDataBase]);
// Simplificar la ruta de propiedades
$v_label = $property["pages"]["person/type_identify_doc_admin"];
$v_label_list = $property["pages"]["general_list"];
// Simplificar el ruteo de edicion/visualizacion
$v_route_edit_preview = 'index.php?page=person/type_identify_doc';
// Simplificar el ruteo de insert
$v_route_insert = '?page=person/type_identify_doc';
// Simplificar el ruteo de lista
$v_route_list = 'index.php?page=person/type_identify_doc_admin';
switch ($action) {
    case 'INSERT':
        $transaction = new Transaction($registry[$nameDataBase]);
        TypeIdentifyDoc::setDataOperationBusiness($registry[$nameDataBase]);
        $idTransaction = $transaction->insertTransaction(array(TypeIdentifyDoc::$business, TypeIdentifyDoc::$insert, TypeIdentifyDoc::$descriptionBusiness));
        $data = array($_POST['NAME']);
 
<?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';
}
$typeDoc = new TypeIdentifyDoc($db);
$catalogo1 = $typeDoc->getListTypeIdentifyDoc();
$city = new City($db);
$catalogo2 = $city->getListCity();
$country = new Country($db);
$catalogo3 = $country->getListCountry();
$pk_id_person_identify_doc = 0;
$identify_document = '';
$city_expedition = 0;
$fk_id_type_identify_doc = 1;
$fk_id_country = 0;
if ($action == 'INSERT') {
    $fk_id_type_identify_doc = $_GET['fk_id_type_identify_doc'];
}
if ($action == 'EDIT') {
    $pk_id_person_identify_doc = $_GET['pk_id_person_identify_doc'];