本文整理汇总了PHP中GSession::HasDroit方法的典型用法代码示例。如果您正苦于以下问题:PHP GSession::HasDroit方法的具体用法?PHP GSession::HasDroit怎么用?PHP GSession::HasDroit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GSession
的用法示例。
在下文中一共展示了GSession::HasDroit方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: BMessage
<?php
require_once 'cst.php';
require_once PATH_CLASSES . 'bMessage.php';
$message = GSession::LireVariableContexte('SupprMessage', 'MESSAGE');
$bMessage = new BMessage();
$groupe = $bMessage->RecupererGroupeMessage($message);
if (GSession::HasDroit(FONC_SUPPRIMER_MESSAGE, $groupe)) {
if (intval($message) > 0) {
$bMessage->SupprimerMessage(intval($message));
}
}
示例2: BCategorie
<?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));
}
}
示例3: BSujet
<?php
require_once 'cst.php';
require_once PATH_CLASSES . 'bSujet.php';
$sujet = GSession::LireVariableContexte('ModifSujet', 'SUJET');
$bSujet = new BSujet();
$groupe = $bSujet->RecupererGroupeSujet($sujet);
if (GSession::HasDroit(FONC_MODIFIER_SUJET, $groupe)) {
$titre = GSession::LireVariableContexte('Titre', 'SUJET');
$description = GSession::LireVariableContexte('Description', 'SUJET');
if ($titre != NULL && $titre != '' && $description != NULL && intval($sujet) != 0) {
$bSujet->ModifierSujet($titre, $description, intval($sujet));
}
}
示例4: BCategorie
<?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]);
}
}
}
示例5: BCategorie
<?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));
}
}
示例6: BSujet
<?php
require_once 'cst.php';
require_once PATH_CLASSES . 'bMessage.php';
require_once PATH_CLASSES . 'bSujet.php';
require_once INC_GSESSION;
$sujet = GSession::LireVariableContexte('CreatSujet', 'MESSAGE');
$bSujet = new BSujet();
$groupe = $bSujet->RecupererGroupeSujet($sujet);
if (GSession::HasDroit(FONC_CREER_MESSAGE, $groupe)) {
$bMessage = new BMessage();
$texte = GSession::LireVariableContexte('Texte', 'MESSAGE');
$joueur = GSession::LireSession('idJoueurConnecte');
if ($texte != NULL && $texte != '' && $sujet != NULL && intval($sujet) != 0) {
$bMessage->AjouterMessage($texte, intval($sujet), $joueur);
}
}
示例7: BCategorie
<?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));
}
}
示例8: BSujet
<?php
require_once 'cst.php';
require_once PATH_CLASSES . 'bSujet.php';
$sujet = GSession::LireVariableContexte('SupprSujet', 'SUJET');
$bSujet = new BSujet();
$groupe = $bSujet->RecupererGroupeSujet($sujet);
if (GSession::HasDroit(FONC_SUPPRIMER_SUJET, $groupe)) {
if (intval($sujet) > 0) {
$bSujet->SupprimerSujet(intval($sujet));
}
}
示例9: BCategorie
<?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);
}
}
}