. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. * */ /** * @Description This is the View of all groups from a determinated user * @author Erik Amaru Ortiz * @Date 24/04/2008 * @LastModification 30/05/2008 */ G::LoadSystem('inputfilter'); $filter = new InputFilter(); $_POST = $filter->xssFilterHard($_POST); $ID_ERROR = $filter->xssFilterHard(G::LoadTranslation('ID_ERROR')); $ID_REQUIRED_FIELDS_ERROR = $filter->xssFilterHard(G::LoadTranslation('ID_REQUIRED_FIELDS_ERROR')); $width_content = '500px'; $html = '
'.$ID_ERROR.'! '.$ID_REQUIRED_FIELDS_ERROR.'
'; $rq = $_POST['req_val']; foreach( $rq as $indexRq => $field) { if ( is_array($field) ) { foreach ($field as $row => $fieldsRow) { foreach ($fieldsRow as $fieldGrid) { $html .= "
(*) The field $fieldGrid of the row $row in the grid $indexRq is required!
"; } } } else { $html .= "
(*) The field $field is required!
"; } } $netxpage = $_POST['next_step']['PAGE']; $previouspage = $_POST['previous_step']['PAGE']; $html .= ''; /*----------------------------------********---------------------------------*/ if($netxpage == ""){ $html .= ''; $html .= ''; $html .= ''; } else{ /*----------------------------------********---------------------------------*/ $html .= ''; $html .= ''; /*----------------------------------********---------------------------------*/ } /*----------------------------------********---------------------------------*/ echo '
'.$html.'
';