ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilSurveyQuestionsPlugin.php
Go to the documentation of this file.
1<?php
2
11abstract class ilSurveyQuestionsPlugin extends ilPlugin
12{
18 final public function getComponentType()
19 {
20 return IL_COMP_MODULE;
21 }
22
28 final public function getComponentName()
29 {
30 return "SurveyQuestionPool";
31 }
32
38 final public function getSlot()
39 {
40 return "SurveyQuestions";
41 }
42
48 final public function getSlotId()
49 {
50 return "svyq";
51 }
52
56 final protected function slotInit()
57 {
58 // nothing to do here
59 }
60
61 abstract public function getQuestionType();
62}
An exception for terminatinating execution or to throw for unit testing.
const IL_COMP_MODULE
Abstract Class ilPlugin.
Abstract parent class for all question plugin classes.
slotInit()
Object initialization done by slot.