当前位置: 首页>>代码示例>>PHP>>正文


PHP Dao::getListeFormations方法代码示例

本文整理汇总了PHP中Dao::getListeFormations方法的典型用法代码示例。如果您正苦于以下问题:PHP Dao::getListeFormations方法的具体用法?PHP Dao::getListeFormations怎么用?PHP Dao::getListeFormations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Dao的用法示例。


在下文中一共展示了Dao::getListeFormations方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: afficherFormulaireEnt

    public function afficherFormulaireEnt()
    {
        $util = new UtilitairePageHtml();
        echo $util->genereBandeauAvantConnexion();
        ?>


		<!DOCTYPE html>
		<html>
		<head>
			<link rel="stylesheet" type="text/css" href="vue/css/general.css">
			<title></title>
			<meta charset="UTF-8">
		</head>
		<body>

			<div id="corps">
				<div>
					<h1> Rencontres Alternance </h1>
					<span> Le 1 avril 2016, l'IUT de Nantes vous propose de rencontrer nos futurs étudiants en alternance (DUT, Licences Professionnelles et DCG).
						Si vous êtes intéressés, nous organiserons les entretiens sur inscription : vous avez donc l'assurance de rencontrer des candidats motivés et correspondant au profil que vous recherchez.
						<br><b>Attention, aucune modification ne pourra être apportée après le 4 mars.</b>
					</span>
					<p name="obligatoire">
						Tous les champs suivis d'un * sont obligatoires
					</p>

					<form name ="inscriptionEnt" action="index.php" method="post" onSubmit="return VerifSubmit();">
						<!-- Participation-->
						<input type="checkbox" name="engagement" required/>Vous souhaitez participer à cette journée de "Rencontres Alternance". <span name="obligatoire">*</span>
						<br/><br/>
						<h2>Votre société</h2>

						<!-- Nom -->
						<label for="nomSociete"/> Nom de la société représentée : <span name="obligatoire">*</span></label>
						<br/>
						<input type="text" name="nomSociete" onblur="verifString(this, 'messageNom', '30')" required/>
						<p id="messageNom" style="color:red"></p>



						<h2>Vous recherchez :</h2>

						<!-- Formation -->
						<label for="formation"/> Quelle(s) formation(s) vous intéresse(nt) ? <span name="obligatoire">*</span></label>
						<br/><br/>
						<?php 
        $compteur = 0;
        $dao = new Dao();
        $listeFormations = $dao->getListeFormations();
        $listeDepartements = array();
        foreach ($listeFormations as $formation) {
            if (!in_array($formation->getDepartement(), $listeDepartements)) {
                array_push($listeDepartements, $formation->getDepartement());
            }
        }
        foreach ($listeDepartements as $departement) {
            echo '<span><b>Département ' . $departement . ' :</b></span>
										<br/>';
            foreach ($listeFormations as $formation) {
                if ($formation->getDepartement() == $departement) {
                    echo '<input type="checkbox" name="formation[' . $compteur . ']" value="' . $formation->getInitiales() . '" onClick="EnableSubmit(this)"> <a id="lienFormation" href="' . $formation->getLien() . '" target="_blank">' . $formation->getDescription() . ' </a> </option>
										<br/>';
                    $compteur = $compteur + 1;
                }
            }
        }
        ?>
						<br/><br/>

						<span name="information">Pour plus d'informations sur nos formations : <a href="http://www.iutnantes.univ-nantes.fr/20796624/0/fiche___pagelibre/&RH=1183111171330&RF=1183119182323" target="_blank">www.univ-nantes.fr/iutnantes</a> </span>
						<br/><br/>
						<b>Emplacement de l'entreprise :</b>
						<br/><br/>
						<!-- Ville -->
						<label for="ville"/> Ville : <span name="obligatoire">*</span></label>
						<br/>
						<input type="text" name="ville" id="ville"onblur="verifString(this, 'messageVille', '30')" required/>
						<p id="messageVille" style="color:red"></p>
						<!-- Code Postal -->
						<label for="codePostal"/> Code Postal : <span name="obligatoire">*</span></label>
						<br/>
						<input type="text" maxlength="5" name="codePostal" id="cp"onblur="verifCodePostal(this, 'messageCP')" required autocomplete:"off"/>
						<p id="messageCP" style="color:red"></p>
						<!-- Adresse -->
						<label for="adresse"/> Adresse : <span name="obligatoire">*</span></label>
						<br/>
						<input type="text" name="adresse" onblur="verifString(this, 'messageAdresse', '30')" required/>
						<p id="messageAdresse" style="color:red"></p>

						<!-- Nombre alternant -->
						<label for="NbAlternants"/> Pouvez-vous indiquer le nombre d'alternants (pour chaque formation) que vous envisagez de recruter ? </span></label>
						<br/>
						<input type="number" name="NbAlternants" value="1" min="1" max="10"/>
						<br/><br/>
						<!-- Nombre de personnes
						<label for="NbPersonnes"/> Afin d'organiser au mieux le planning, merci de nous indiquer le nombre de personnes de votre entreprise présentes pour mener les entretiens. <span name="obligatoire">*</span>
						<br/>
						<input type="text" name="NbPersonnes" required/>
						<br/><br/> -->
//.........这里部分代码省略.........
开发者ID:SimylinK,项目名称:JobDating,代码行数:101,代码来源:vueInscriptionEnt.php

示例2: afficherCompteEnt


//.........这里部分代码省略.........
        if ($profil->getTypeCreneau() == "journee") {
            echo '<option value="matin">Matin</option>
						<option value="apres_midi">Après-midi</option>
						<option value="journee" selected> Journée</option>
						';
        }
        echo '</select>
				<br/><br/>
				<label for="nbRecruteursSociete"/> Nombre de recruteurs
				<br/>
				<input required type="number" name="nbRecruteursSociete" min="1" max="20" value="' . $profil->getNbRecruteurs() . '" >
				<br/><br/>
				<label for="nbStandsSociete"/> Nombre de sessions en parallèle
				<br/>
				<input required type="number" name="nbStandsSociete" min="1" max="10" value="' . $profil->getNbStands() . '" >
				<br/><br/>
				<label for="nbRepasSociete"/> Nombre de repas prévus
				<br/>
				<input required type="number" min="0" max="10" name="nbRepasSociete" value="' . $profil->getNbRepas() . '" onblur="verifNombre(this, \'messageNbRepas\', 3)">
	 			<p id="messageNbRepas" style="color:red"></p>
	 			<TD> 	<input type="submit" name="modification_entreprise_organisation" value="confirmer"/> </TD>
		</TABLE>
		</form></br>

		<form action="index.php" method="post">
		<TABLE id="tabModifEnt">
	  	';
        $compteur = 0;
        $dateNow = new DateTime("now");
        $tabConfig = $dao->getConfiguration();
        $dateLimitEnt = new DateTime($tabConfig['dateFinInscriptionEnt']);
        $dateDebutEnt = new DateTime((string) $tabConfig['dateDebutInscriptionEnt']);
        $formationsRecherchees = explode(",", $profil->getFormationsRecherchees());
        $listeFormations = $dao->getListeFormations();
        $listeDepartements = array();
        if ($dateNow < $dateLimitEnt && $dateNow >= $dateDebutEnt) {
            echo '<CAPTION> Formations recherchées </CAPTION>
						  	<TR>
						 			<TD> ';
            foreach ($listeFormations as $formation) {
                if (!in_array($formation->getDepartement(), $listeDepartements)) {
                    array_push($listeDepartements, $formation->getDepartement());
                }
            }
            foreach ($listeDepartements as $departement) {
                echo '<span><b>Département ' . $departement . ' :</b></span>
											<br/>';
                foreach ($listeFormations as $formation) {
                    if ($formation->getDepartement() == $departement) {
                        echo '<input type="checkbox" name="formation[' . $compteur . ']" value="' . $formation->getInitiales() . '" onClick="EnableSubmit(this)" ';
                        if (in_array($formation->getInitiales(), $formationsRecherchees)) {
                            echo 'checked ';
                        }
                        echo '><a id="lienFormation" href="' . $formation->getLien() . '" target="_blank">' . $formation->getDescription() . ' </a></option>
											<br/>';
                        $compteur = $compteur + 1;
                    }
                }
            }
            echo '<TD> 	<input type="submit" name="modification_entreprise_formations" value="confirmer"/> </TD>
			</TABLE>
			</form></br>';
        }
        echo '<form action="index.php" method="post" >
		<TABLE id="tabModifEnt">
	  	<CAPTION> Informations sur la société </CAPTION>
开发者ID:SimylinK,项目名称:JobDating,代码行数:67,代码来源:vueMenu.php

示例3: afficherFormulaireEtu


//.........这里部分代码省略.........
				}
			</script>
			<script>
			VerifSubmit = function()
				{
				html = html.replace(/</g, "&lt;").replace(/>/g, "&gt;");
				var passw = document.getElementById("passw");
				var passwBis = document.getElementById("passwBis");
					if (passw.value != passwBis.value) {
							alert('Les mots de passe ne coïncident pas.');
					        return false;
					}
					if (/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i.test(document.getElementById("mail").value))
					  {
					    return true;
					  }
					  else {
					  	alert("L\'adresse email n'est pas correcte !")  ;
					 	return false;
					  }
				}
			</script>

			<form action="index.php" method="post" onSubmit="return VerifSubmit();">
				<!-- Prenom-->
				<label for="prenom"/> Prénom <span name="obligatoire">*</span>
				<br/>
				<input type="text" name="prenom" onblur="verifString(this,'messagePrenomContact','20')" required/>
				<p id="messagePrenomContact" style="color:red"></p>
				<br/><br/>
				<!-- Nom -->
				<label for="nom"/> Nom <span name="obligatoire">*</span>
				<br/>
				<input type="text" name="nom" onblur="verifString(this,'messageNomContact','20')" required/>
				<p id="messageNomContact" style="color:red"></p>
				<br/><br/>
				<!-- Telephone -->
				<label for="tel"/> Téléphone (portable de préférence, sans espace. Ex : 0610203040) <span name="obligatoire">*</span>
				<p id="messageTel" style="color:red"></p>
				<br/>
				<input type="text" name="tel" maxlength="10" onblur="verifTelephone(this, 'messageTel')" required/>
				<br/><br/>
				<!-- Engagement -->
				<label for="engagement"/> Obligatoire <span name="obligatoire">*</span>
				<br/>
				<input type="checkbox" name="engagement" required/><span>Je m'engage à me présenter à l'entretien de recrutement à l'heure fixée.</span>
				<br/><br/>
				<!-- Formation -->
				<label for="formation"/> Choix de votre formation en alternance <span name="obligatoire">*</span>
				<br/>
								<select name="formation" required>
						<?php 
        $dao = new Dao();
        $listeFormations = $dao->getListeFormations();
        foreach ($listeFormations as $formation) {
            echo '<option value="' . $formation->getInitiales() . '"> ' . $formation->getDescription() . '</option>
								<br/>';
        }
        ?>
				</select>
				<br/><br/>

				<h2>Vos coordonnées</h2>
				<!--  Adresse email-->
				<label for="email"/> Adresse email (consultée régulièrement) <span name="obligatoire">*</span>
				<br/>
				<span name="detail">Elle servira à l'envoi d'informations relatives aux entretiens et à l'authentification</span>
				<br/>
				<input type="text" name="email" id="mail" onblur="verifEmail(this, 'messageEmail')" required/>
				<p id="messageEmail" style="color:red"></p>
				<br/><br/>
				<!--  Mdp -->
				<label for="password"/> Mot de passe (il sera utilité pour l'authentification sur le site)<span name="obligatoire">*</span>
				<br/>
				<input type="password" name="password" id="passw" required/>
				<br/><br/>
				<!--  Mdp bis-->
				<label for="passwordBis"/> Veuillez réécrire le mot de passe<span name="obligatoire">*</span>
				<br/>
				<input type="password" name="passwordBis" id="passwBis" onblur="verifMdp('messageMdp')" equired/>
				<p id="messageMdp" style="color:red"></p>
				<br/><br/>
				<input type="hidden" name="inscription" value="etudiant"/>
				<input type="submit" name="valid_inscription_etu"/>
			</form>

		</p>
	</div>
	<div style="text-align: center;">
		<a href="index.php">Retour à la page d'accueil</a>
	</div>
</div>
	<?php 
        echo $util->generePied();
        ?>
</body>
</html>

<?php 
    }
开发者ID:SimylinK,项目名称:JobDating,代码行数:101,代码来源:vueInscriptionEtu.php


注:本文中的Dao::getListeFormations方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。