本文整理汇总了PHP中Dao::getFormationsAffichage方法的典型用法代码示例。如果您正苦于以下问题:PHP Dao::getFormationsAffichage方法的具体用法?PHP Dao::getFormationsAffichage怎么用?PHP Dao::getFormationsAffichage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dao
的用法示例。
在下文中一共展示了Dao::getFormationsAffichage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: afficherProfil
//.........这里部分代码省略.........
}
}
</script>
<script>
VerifSubmit = function()
{
html = html.replace(/</g, "<").replace(/>/g, ">");
var nb_repas = document.getElementById("nb_repas");
var checkboxRepas = document.getElementById("checkbox_repas");
var passw = document.getElementById("passw");
var passwBis = document.getElementById("passwBis");
if (checkboxRepas.checked == true) {
if (nb_repas.value == "" || nb_repas.value == null)
{
alert("Vous n\'avez pas précisé combien de repas seront à prévoir.");
return false;
}
}
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>
<?php
$listeFormation = $dao->getFormationsAffichage($id);
$formation = "Formation";
$formation::afficherForm($listeFormation);
echo '<br></br></br></br>
----------------------------------------------------<br/><br/>
<h2>Pour effectuer des changements : </h2>
<style>
#tabModifEnt tr td{
padding: 15px;
border: 1px solid navy;
}
</style>
<form action="index.php" method="post" onSubmit="return VerifSubmit();">
<TABLE id="tabModifEnt">
<CAPTION> Organisation </CAPTION>
<TR>
<TD> <label for="disponibiliteSociete"/> Disponibilité
<br/>
<select required name="disponibiliteSociete"/>';
if ($profil->getTypeCreneau() == "matin") {
echo '<option value="matin" selected >Matin</option>
<option value="apres_midi">Après-midi</option>
<option value="journee"> Journée</option>
';
}
if ($profil->getTypeCreneau() == "apres_midi") {
echo '<option value="matin">Matin</option>
<option value="apres_midi" selected >Après-midi</option>
<option value="journee"> Journée</option>
';
示例2: afficherFormations
public function afficherFormations()
{
$util = new UtilitairePageHtml();
echo $util->genereBandeauApresConnexion();
$dao = new Dao();
$config = $dao->getConfiguration();
?>
<!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="main">
<br/> Bonjour,
<br/><br/> Ici seront affichées les formations possibles de l'entreprise. Celle-ci pourra les modifier en respectant les contraintes de son compte.
<br/><br/> Une pause à midi est prévue pour les entretiens qui se déroulent toute la journée.
<?php
echo "<br/><br/><b> Un entretien dure " . $config['dureeCreneau'] . " minutes.</b></div>";
$id = $_SESSION['idUser'];
$listeFormation = $dao->getFormationsAffichage($id);
$formation = "Formation";
$formation::afficherForm($listeFormation);
echo $util->generePied();
?>
</body>
</html>
<?php
}
示例3: afficherProfil
public function afficherProfil($type, $profil)
{
if (isset($_SESSION['type_connexion'])) {
$util = new UtilitairePageHtml();
echo $util->genereBandeauApresConnexion();
} else {
$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>
<?php
if (isset($_SESSION['type_connexion'])) {
echo '<div id="main">';
} else {
echo '<div id="login">';
}
?>
<br/><br/>
<!-- Description profil -->
<?php
if ($type == "etudiant") {
echo '<div class="titre_profil">Profil Etudiant</div>
<br/><br/>
<span class="categorie_profil">Nom :</span> ' . $profil->getNomEtu() . '
<br/><br/><span class="categorie_profil">Prénom :</span> ' . $profil->getPrenomEtu() . '
<br/><br/><span class="categorie_profil">Email :</span> <a href="mailto:' . $profil->getMailEtu() . '">' . $profil->getMailEtu() . '</a>
<br/><br/><span class="categorie_profil">Téléphone :</span> ' . $profil->getNumTelEtu() . '
<br/><br/><span class="categorie_profil">Formation :</span> ' . $profil->getFormationEtu() . '
';
}
if ($type == "entreprise") {
$dispo = "";
if ($profil->getTypeCreneau() == "journee") {
$dispo = "Journée.";
}
if ($profil->getTypeCreneau() == "matin") {
$dispo = "Matinée.";
}
if ($profil->getTypeCreneau() == "apres_midi") {
$dispo = "Après-midi.";
}
echo '<div class="titre_profil">Profil Entreprise</div>
<br/><br/>
<span class="categorie_profil">Nom de l\'entreprise :</span> ' . $profil->getNomEnt() . '
<br/><br/>
<span class="categorie_profil">Ville de l\'entreprise :</span> ' . $profil->getVilleEnt() . '
<br/><br/>
<span class="categorie_profil">Code Postal :</span> ' . $profil->getCodePostal() . '
<br/><br/>
<span class="categorie_profil">Adresse :</span> ' . $profil->getAdresseEnt() . '
<br/><br/>
<span class="categorie_profil">Disponibilité :</span> ' . $dispo . '
<br/><br/>
<span class="categorie_profil">Nom du contact :</span> ' . $profil->getPrenomContact() . ' ' . $profil->getNomContact() . '
<br/><br/>
<span class="categorie_profil">Email :</span> <a href="mailto:' . $profil->getMailEnt() . '">' . $profil->getMailEnt() . '</a>
<br/><br/>
<span class="categorie_profil">Téléphone :</span> ' . $profil->getNumTelContact() . '
<br/><br/>
<span class="categorie_profil">Recherche :</span> ' . $profil->getFormationsRecherchees() . ' pour ' . $profil->getNbPlaces() . ' place(s) disponible(s).
<br/><br/>
<span class="categorie_profil">Nombre de stands en simultané :</span> ' . $profil->getNbStands() . '
<br/><br/>
';
$dao = new Dao();
$id = $profil->getID();
if ($_SESSION['type_connexion'] == "admin") {
$listeFormation = $dao->getFormationsAffichage($id);
$formation = "Formation";
$formation::afficherForm($listeFormation);
}
}
?>
</div>
<?php
echo $util->generePied();
?>
</body>
</html>
<?php
}