. * * 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 */ $width_content = '500px'; $html = '
'.G::LoadTranslation('ID_ERROR').'! '.G::LoadTranslation('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 .= ''; $html .= ''; $html .= ''; echo '
'.$html.'
';