예제 #1
0
 SaisieOuiNon($Msg_FormStage[MSGFORMSTAGE_EMBAUCHE], 'IsEmbauchePossible', $ValIsEmbauchePossible);
 AffichLigneVierge();
 AffichSepar();
 /*
     =================================
     2. Environnement du stagiaire ... 
     =================================
 */
 AffichTitre($Msg_FormStage[MSGFORMSTAGE_2], 2);
 /*
     ==========================
     2.1 Environnement matériel
     ==========================
 */
 AffichTitre($Msg_FormStage[MSGFORMSTAGE_ENV_MATERIEL], 3);
 SaisieRubrStage('', "", $ReqMateriels, $ValMateriel, MATERIEL_PAR_LIGNE);
 AffichLigneVierge();
 AffichLigneVierge();
 /*
     ==========================
     2.2 Environnement logiciel 
     ==========================
 */
 AffichTitre($Msg_FormStage[MSGFORMSTAGE_ENV_LOGICIEL], 3);
 SaisieRubrStageEtAutre('', $Msg_FormStage[MSGFORMSTAGE_LANGAGES], $ReqLangages, $ValLangages, $ValidAutresLangages, 'AutresLangages', $ValAutresLangages, LANG_PAR_LIGNE);
 SaisieRubrStageEtAutre('', $Msg_FormStage[MSGFORMSTAGE_BD], $ReqBDs, $ValBD, $ValidAutresBD, 'AutresBD', $ValAutresBD, BD_PAR_LIGNE);
 AffichLigneVierge();
 SaisieOuiNonEtAutre($ValidLogicielsSpec, $Msg_FormStage[MSGFORMSTAGE_LOGICIELS_SPEC], 'LogicielsSpecOuiNon', $ValLogicielsSpecOuiNon, $Msg_FormStage[MSGFORMSTAGE_PRECISEZ], 'LogicielsSpec', $ValLogicielsSpecifiques);
 AffichLigneVierge();
 /*
     =========================
예제 #2
0
function SaisieRubrStageEtAutre($SymboleValid, $Libelle, $Requete, $Masque, $SymboleValidAutre, $NameAutre, $ValAutre, $NbParLigne = 1)
{
    SaisieRubrStage($SymboleValid, $Libelle, $Requete, $Masque, $NbParLigne);
    ?>
    
    <div class="row"><br>
    	<div class="input-field col s12">
		<?php 
    echo $SymboleValidAutre;
    ?>
        
        
            <input type="text" name="<?php 
    echo $NameAutre;
    ?>
" id="<?php 
    echo $NameAutre;
    ?>
" size="50" 
			       value="<?php 
    echo $ValAutre;
    ?>
">
			       <label for="<?php 
    echo $NameAutre;
    ?>
">Autres</label>
        </div>
    </div>
										                                   <?php 
}