aboutsummaryrefslogtreecommitdiff
path: root/lib/plugins/core/QuestionnaireAssignmentPlugin.class.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2021-07-22 16:07:19 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2021-07-22 16:19:12 +0200
commita3da1483a9e689846179159355badfec8073dbec (patch)
tree770dcca6bdf5f6f2a11b0e7fcbbeda6919a3fc52 /lib/plugins/core/QuestionnaireAssignmentPlugin.class.php
current code from svn, revision 62608
Diffstat (limited to 'lib/plugins/core/QuestionnaireAssignmentPlugin.class.php')
-rw-r--r--lib/plugins/core/QuestionnaireAssignmentPlugin.class.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/plugins/core/QuestionnaireAssignmentPlugin.class.php b/lib/plugins/core/QuestionnaireAssignmentPlugin.class.php
new file mode 100644
index 0000000..6892f8a
--- /dev/null
+++ b/lib/plugins/core/QuestionnaireAssignmentPlugin.class.php
@@ -0,0 +1,55 @@
+<?php
+
+/**
+ * Interface QuestionnaireAssignmentPlugin
+ * Implement this interface if you want to relate Stud.IP-questionnaires to your plugin-contents.
+ * By storing an assignment you should set the range_type to something unique that is
+ * related to your plugin like "mytaskplugin". In all methods you should first check if the
+ * assignment is related to your plugin, because other QuestionnaireAssignmentPlugins might
+ * be installed as well.
+ */
+interface QuestionnaireAssignmentPlugin
+{
+ /**
+ * Returns if the questionnaire is viewable dependend on the assignment. Check for the range_type
+ * and range_id to see if the the assignment has to do with your plugin (and not with
+ * somebody else's plugin) and if type and id fit.
+ * @param QuestionnaireAssignment $questionnaire
+ * @return boolean
+ */
+ public function isQuestionnaireViewable(QuestionnaireAssignment $questionnaire);
+
+ /**
+ * Returns if the questionnaire is editable dependend on the assignment. Check for the range_type
+ * and range_id to see if the the assignment has to do with your plugin (and not with
+ * somebody else's plugin) and if type and id fit.
+ * @param QuestionnaireAssignment $questionnaire
+ * @return boolean
+ */
+ public function isQuestionnaireEditable(QuestionnaireAssignment $questionnaire);
+
+ /**
+ * The display name of the assignment.
+ * @param QuestionnaireAssignment $questionnaire
+ * @return string
+ */
+ public function getQuestionnaireAssignmentName(QuestionnaireAssignment $questionnaire);
+
+ /**
+ * This template will get displayed when someone at tools -> questionnaires
+ * wants to edit the contexts of the questionnaire. Maybe you don't want to provide a
+ * template here, so return null or just a readonly html-snippet.
+ * @param Questionnaire $questionnaire
+ * @return null|Flexi_Template
+ */
+ public function getQuestionnaireAssignmentEditTemplate(Questionnaire $questionnaire);
+
+ /**
+ * When the context of the questionnaire is stored at tools -> questionnaires (where
+ * the template from getQuestionnaireAssignmentEditTemplate was displayed) you should
+ * use this method to store your assignments as well.
+ * @param Questionnaire $questionnaire
+ * @return null
+ */
+ public function storeQuestionnaireAssignments(Questionnaire $questionnaire);
+}