Lets admin see surveys even when not in targeted promos. Closes #967
authorPascal Corpet <pascal.corpet@m4x.org>
Thu, 24 Jun 2010 20:50:50 +0000 (22:50 +0200)
committerPascal Corpet <pascal.corpet@m4x.org>
Thu, 24 Jun 2010 20:50:50 +0000 (22:50 +0200)
ChangeLog
modules/survey.php

index 2f7957c..d060c8e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -46,6 +46,7 @@ Bug/Wish:
     * Survey:
         - #993: Enables survey for oranges                                 -Car
         - #1002: Lets the user set promo interval in both ways             -Car
+        - #967: Lets admin see surveys even when not in targeted promos    -Car
 
     * XnetGrp:
         - #1086: Fixes view members of group even if not in group          -Car
index 15ee732..1057622 100644 (file)
@@ -70,6 +70,10 @@ class SurveyModule extends PLModule
             return PL_DO_AUTH;
         }
         if (Post::has('survey_submit')) { // checks if the survey has already been filled in
+            // admins can see the survey but not vote
+            if (!$this->check_surveyPerms($page, $survey, false, false)) {
+                return PL_DO_AUTH;
+            }
             $uid = 0;
             if (!$survey->isMode(Survey::MODE_ALL)) { // if survey is restriced to alumni
                 $uid = S::v('uid');
@@ -397,7 +401,7 @@ class SurveyModule extends PLModule
     // }}}
 
     // {{{ function check_surveyPerms() : checks the particular surveys access permissions
-    function check_surveyPerms(&$page, $survey, $silent = false)
+    function check_surveyPerms(&$page, $survey, $silent = false, $admin_allowed = true)
     {
         $this->load('survey.inc.php');
         if ($survey->isMode(Survey::MODE_ALL)) { // if the survey is not reserved to alumni
@@ -421,6 +425,12 @@ class SurveyModule extends PLModule
         if ($allowed) {
             return true;
         }
+        if (S::admin() && $admin_allowed) {
+            if (!$silent) {
+                $page->trigWarning('Tu as accès à ce sondage car tu es administrateur du site.');
+            }
+            return true;
+        }
         if (!$silent) {
             $page->kill("Tu n'as pas accès à ce sondage car il est réservé à d'autres promotions.");
         }