本文整理匯總了PHP中Dao::getGroupeXLS方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dao::getGroupeXLS方法的具體用法?PHP Dao::getGroupeXLS怎麽用?PHP Dao::getGroupeXLS使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Dao
的用法示例。
在下文中一共展示了Dao::getGroupeXLS方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: affiche
function affiche()
{
/* Si GET["ajout"] est possitionne, on affiche la vue pour ajouter/modifier une liste*/
if (isset($_GET["ajoutListe"])) {
$this->vue->ajoutListe();
/* Sinon si la date et un groupe est possitionne on affiche la feuille d'absence associe*/
} else {
if (isset($_POST["groupe"])) {
/*On explose pour recuperer le groupe et la promo*/
if (strpos($_POST["groupe"], ':') !== FALSE) {
$groupe = explode(":", $_POST["groupe"])[1];
$promo = explode(":", $_POST["groupe"])[0];
} else {
$groupe = "";
$promo = $_POST["groupe"];
}
} else {
/*On explose pour recuperer le groupe et la promo*/
if (strpos($_GET["ics"], ':') !== FALSE) {
$groupe = explode(":", $_GET["ics"])[1];
$promo = explode(":", $_GET["ics"])[0];
} else {
$groupe = "";
$promo = $_GET["ics"];
}
}
}
/* Si le groupe est NULL, c'est une promo, on utilise la vue associe. Sinon on redirige vers l'ajout de liste.*/
if ($groupe == NULL) {
$dao = new Dao();
$dao->setICS($promo);
$dao->getCours();
// $groupes = $dao->getGroupes2();
if ($this->dao->fichierPromoExist($promo)) {
$groupes = $dao->getGroupeXLS($dao->getFeuilleAbsGroupe($promo));
$this->vue->head();
$this->vue->tableauPromo($promo, $groupes);
} else {
header('location:index.php?ajoutListe=true');
}
} else {
$this->vue->head();
$this->vue->tableau();
}
}