public function Supprimer() { $id = $this->Id(); if ($id != NULL) { $bCategorie = new BCategorie(); $bCategorie->Supprimer($id); } else { GSession::LeverException(EXM_0012, 'MCategorie::Supprimer, pas d\'id categorie.'); } }
<?php require_once 'cst.php'; require_once PATH_CLASSES . 'bCategorie.php'; require_once 'GuildPortail/Outils/include.php'; require_once INC_GSESSION; $categorie = GSession::LireVariableContexte('CreatCategorie', 'CATEGORIE'); $typeCategorie = GSession::LireVariableContexte('TypeCategorie', 'CATEGORIE'); $bCategorie = new BCategorie(); $groupe = NULL; if ($categorie == -1 || $categorie == NULL) { $groupe = GSession::LireSession('idGroupe'); } else { $groupe = $bCategorie->RecupererGroupeCategorie($categorie); } if (GSession::HasDroit(FONC_CREER_FORUM, $groupe)) { $titre = GSession::LireVariableContexte('Titre', 'CATEGORIE'); $description = GSession::LireVariableContexte('Description', 'CATEGORIE'); if ($typeCategorie === NULL || $typeCategorie === '' || intval($typeCategorie) === 0) { $typeCategorie = 1; } if ($groupe != NULL && $titre != NULL && $titre != '' && $description != NULL && $categorie != NULL && intval($categorie) != 0) { $bCategorie->AjouterCategorie($titre, $description, intval($categorie), $groupe, intval($typeCategorie)); } }
<?php require_once 'cst.php'; require_once INC_SLISTEFORUMS; require_once INC_GSESSION; require_once PATH_CLASSES . 'bCategorie.php'; require_once PATH_CLASSES . 'bTypeCategorie.php'; if (GSession::HasDroit(FONC_VOIR_FORUM)) { $groupe = GSession::LireSession('idGroupe'); $cat = GSession::LireVariableContexte('Categorie', 'CATEGORIE'); if (intval($cat) <= 0) { $cat = NULL; } $bCategorie = new BCategorie(); $categories = $bCategorie->ChargerListeCategorieFromCategorie($groupe, $cat); $bTypeCategorie = new BTypeCategorie(); $typesCategorie = $bTypeCategorie->RecupererTypesCategorie(); $liste = new SListeForums('Liste des forums', $cat, 'categorie', 'CreerCategorie', 'ModifierCategorie', 'SupprimerCategorie', 'ChargerCategoriesEtSujets', $typesCategorie); while (list($i, $categorie) = each($categories)) { if ($categorie[COL_CATEGORIE] == $cat) { $liste->AjouterElement($categorie[COL_ID], $categorie[COL_NOM], $categorie[COL_COMMENTAIRE], LISTE_CHAMPLISTE_VALEURPARDEFAUT, $categorie[COL_MESSAGES], $categorie[COL_SUJETS], $categorie[COL_VERSION]); } } }
<?php require_once 'cst.php'; require_once PATH_CLASSES . 'bCategorie.php'; $categorie = GSession::LireVariableContexte('SupprCategorie', 'CATEGORIE'); $bCategorie = new BCategorie(); $groupe = $bCategorie->RecupererGroupeCategorie($categorie); if (GSession::HasDroit(FONC_SUPPRIMER_FORUM, $groupe)) { if (intval($categorie) > 0) { $bCategorie->SupprimerCategorie(intval($categorie)); } }
<?php require_once 'cst.php'; require_once PATH_CLASSES . 'bCategorie.php'; $categorie = GSession::LireVariableContexte('ModifCategorie', 'CATEGORIE'); $typeCategorie = GSession::LireVariableContexte('TypeCategorie', 'CATEGORIE'); $bCategorie = new BCategorie(); $groupe = $bCategorie->RecupererGroupeCategorie($categorie); if (GSession::HasDroit(FONC_MODIFIER_FORUM, $groupe)) { $titre = GSession::LireVariableContexte('Titre', 'CATEGORIE'); $description = GSession::LireVariableContexte('Description', 'CATEGORIE'); if ($typeCategorie === NULL || $typeCategorie === '' || intval($typeCategorie) === 0) { $typeCategorie = 1; } if ($titre != NULL && $titre != '' && $description != NULL && $categorie != NULL && intval($categorie) != 0) { $bCategorie->ModifierCategorie($titre, $description, intval($categorie), intval($typeCategorie)); } }
<?php require_once 'cst.php'; require_once PATH_CLASSES . 'bCategorie.php'; require_once PATH_CLASSES . 'bSujet.php'; require_once PATH_CLASSES . 'bMessage.php'; require_once INC_GSESSION; $categorie = GSession::LireVariableContexte('CreatCategorie', 'SUJET'); $bCategorie = new BCategorie(); $groupe = $bCategorie->RecupererGroupeCategorie($categorie); if (GSession::HasDroit(FONC_CREER_SUJET, $groupe)) { $bSujet = new BSujet(); $titre = GSession::LireVariableContexte('Titre', 'SUJET'); $description = GSession::LireVariableContexte('Description', 'SUJET'); $texte = GSession::LireVariableContexte('Texte', 'SUJET'); $joueur = GSession::LireSession('idJoueurConnecte'); if ($titre != NULL && $titre != '' && $texte != NULL && $texte != '' && $description != NULL && $categorie != NULL && intval($categorie) != 0) { $sujet = $bSujet->AjouterSujet($titre, $description, intval($categorie), $joueur); if ($sujet != NULL) { $bMessage = new BMessage(); $bMessage->AjouterMessage($texte, intval($sujet), $joueur); } } }