stats_autoriser.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. if (!defined('_ECRIRE_INC_VERSION')) return;
  3. function stats_autoriser(){}
  4. function autoriser_statistiques_menu_dist($faire, $type='', $id=0, $qui = NULL, $opt = NULL){
  5. return autoriser('voirstats', $type, $id, $qui, $opt);
  6. }
  7. function autoriser_referers_menu_dist($faire, $type='', $id=0, $qui = NULL, $opt = NULL){
  8. return autoriser('voirstats', $type, $id, $qui, $opt);
  9. }
  10. // Lire les stats ?
  11. // = tous les admins
  12. // http://code.spip.net/@autoriser_voirstats_dist
  13. function autoriser_voirstats_dist($faire, $type, $id, $qui, $opt) {
  14. return (($GLOBALS['meta']["activer_statistiques"] != 'non')
  15. AND ($qui['statut'] == '0minirezo'));
  16. }
  17. // autorisation des boutons et onglets
  18. function autoriser_statsvisites_onglet_dist($faire, $type, $id, $qui, $opt) {
  19. return autoriser('voirstats', $type, $id, $qui, $opt);
  20. }
  21. function autoriser_statsrepartition_onglet_dist($faire, $type, $id, $qui, $opt) {
  22. return autoriser('voirstats', $type, $id, $qui, $opt);
  23. }
  24. function autoriser_statslang_onglet_dist($faire, $type, $id, $qui, $opt) {
  25. $objets = explode(',', $GLOBALS['meta']['multi_objets']);
  26. return (in_array('spip_articles', $objets)
  27. OR in_array('spip_rubriques', $objets))
  28. AND autoriser('voirstats', $type, $id, $qui, $opt);
  29. }
  30. function autoriser_statsreferers_onglet_dist($faire, $type, $id, $qui, $opt) {
  31. return autoriser('voirstats', $type, $id, $qui, $opt);
  32. }
  33. ?>