2021-02-06 22:22:13 +01:00
|
|
|
<?php
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fonction d'appel pour le pipeline
|
|
|
|
*
|
|
|
|
* @pipeline autoriser
|
|
|
|
*/
|
|
|
|
function libreavous_autoriser() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-11 22:18:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Exemple
|
|
|
|
function autoriser_chapitre_configurer_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
// type est un objet (la plupart du temps) ou une chose.
|
|
|
|
// autoriser('configurer', '_chapitre') => $type = 'chapitre'
|
|
|
|
// au choix :
|
|
|
|
return autoriser('webmestre', $type, $id, $qui, $opt); // seulement les webmestres
|
|
|
|
return autoriser('configurer', '', $id, $qui, $opt); // seulement les administrateurs complets
|
|
|
|
return $qui['statut'] == '0minirezo'; // seulement les administrateurs (même les restreints)
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// restreindre les champs 'array(...)' sur les articles qui portent la composition 'emission'
|
|
|
|
restreindre_extras('article', array(
|
2021-09-07 10:44:02 +02:00
|
|
|
'podcast_sommaire',
|
2021-05-11 22:18:36 +02:00
|
|
|
'podcast_code',
|
|
|
|
'podcast_duree',
|
|
|
|
'podcast_mp3',
|
|
|
|
'podcast_ogg',
|
|
|
|
'podcast_transcription',
|
|
|
|
'podcast_personnes',
|
2021-07-10 14:58:55 +02:00
|
|
|
'podcast_references',
|
2021-05-11 22:18:36 +02:00
|
|
|
'podcast_galeriephotos',
|
|
|
|
'podcast_musique',
|
|
|
|
'drupal_guid',
|
2021-10-05 11:31:16 +02:00
|
|
|
'drupal_pubdate',
|
2021-10-05 11:26:35 +02:00
|
|
|
'description_rss'
|
2021-05-11 22:18:36 +02:00
|
|
|
), 'emission', 'composition');
|
|
|
|
|
2021-09-03 11:29:18 +02:00
|
|
|
restreindre_extras('article', array(
|
|
|
|
'chronique'
|
|
|
|
), 'chronique', 'composition');
|
|
|
|
|
2021-05-11 22:18:36 +02:00
|
|
|
|
|
|
|
// -----------------
|
|
|
|
// Objet chapitres
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autorisation de voir (chapitres)
|
|
|
|
*
|
|
|
|
* @param string $faire Action demandée
|
|
|
|
* @param string $type Type d'objet sur lequel appliquer l'action
|
|
|
|
* @param int $id Identifiant de l'objet
|
|
|
|
* @param array $qui Description de l'auteur demandant l'autorisation
|
|
|
|
* @param array $opt Options de cette autorisation
|
|
|
|
* @return bool true s'il a le droit, false sinon
|
|
|
|
**/
|
|
|
|
function autoriser_chapitres_voir_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autorisation de voir (chapitre)
|
|
|
|
*
|
|
|
|
* @param string $faire Action demandée
|
|
|
|
* @param string $type Type d'objet sur lequel appliquer l'action
|
|
|
|
* @param int $id Identifiant de l'objet
|
|
|
|
* @param array $qui Description de l'auteur demandant l'autorisation
|
|
|
|
* @param array $opt Options de cette autorisation
|
|
|
|
* @return bool true s'il a le droit, false sinon
|
|
|
|
**/
|
|
|
|
function autoriser_chapitre_voir_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autorisation de créer (chapitre)
|
|
|
|
*
|
|
|
|
* @param string $faire Action demandée
|
|
|
|
* @param string $type Type d'objet sur lequel appliquer l'action
|
|
|
|
* @param int $id Identifiant de l'objet
|
|
|
|
* @param array $qui Description de l'auteur demandant l'autorisation
|
|
|
|
* @param array $opt Options de cette autorisation
|
|
|
|
* @return bool true s'il a le droit, false sinon
|
|
|
|
**/
|
|
|
|
function autoriser_chapitre_creer_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
return in_array($qui['statut'], array('0minirezo', '1comite'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autorisation de modifier (chapitre)
|
|
|
|
*
|
|
|
|
* @param string $faire Action demandée
|
|
|
|
* @param string $type Type d'objet sur lequel appliquer l'action
|
|
|
|
* @param int $id Identifiant de l'objet
|
|
|
|
* @param array $qui Description de l'auteur demandant l'autorisation
|
|
|
|
* @param array $opt Options de cette autorisation
|
|
|
|
* @return bool true s'il a le droit, false sinon
|
|
|
|
**/
|
|
|
|
function autoriser_chapitre_modifier_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
return in_array($qui['statut'], array('0minirezo', '1comite'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autorisation de supprimer (chapitre)
|
|
|
|
*
|
|
|
|
* @param string $faire Action demandée
|
|
|
|
* @param string $type Type d'objet sur lequel appliquer l'action
|
|
|
|
* @param int $id Identifiant de l'objet
|
|
|
|
* @param array $qui Description de l'auteur demandant l'autorisation
|
|
|
|
* @param array $opt Options de cette autorisation
|
|
|
|
* @return bool true s'il a le droit, false sinon
|
|
|
|
**/
|
|
|
|
function autoriser_chapitre_supprimer_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
return in_array($qui['statut'], array('0minirezo', '1comite'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autorisation de créer l'élément (chapitre) dans un articles
|
|
|
|
*
|
|
|
|
* @param string $faire Action demandée
|
|
|
|
* @param string $type Type d'objet sur lequel appliquer l'action
|
|
|
|
* @param int $id Identifiant de l'objet
|
|
|
|
* @param array $qui Description de l'auteur demandant l'autorisation
|
|
|
|
* @param array $opt Options de cette autorisation
|
|
|
|
* @return bool true s'il a le droit, false sinon
|
|
|
|
**/
|
|
|
|
function autoriser_article_creerchapitredans_dist($faire, $type, $id, $qui, $opt) {
|
|
|
|
return ($id and autoriser('voir', 'articles', $id) and autoriser('creer', 'chapitre'));
|
|
|
|
}
|