This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" src="<?php echo base_url(); ?>js/jquery.validate.min.js"></script> | |
| <?php | |
| if (!isset($hide_toolbar) || $hide_toolbar !== true) { | |
| toolbar_helper::getToolbarActionsForm(); | |
| } | |
| // Por defecto se pone en blanco | |
| $id = 0; | |
| $nombre = ''; | |
| $codigo = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class turnoenfermeria_form extends generic_controller_form_lite { | |
| public function __construct() { | |
| parent::__construct(); | |
| //Seteo de los parametros basicos del controlador | |
| $this->setTitle('Turnos Enfermeria'); | |
| $this->setModel('turnosEnfermeria'); | |
| $this->setModule('admin'); |