ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSurveyQuestionsPlugin.php
Go to the documentation of this file.
1 <?php
2 
11 abstract 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 }
const IL_COMP_MODULE
slotInit()
Object initialization done by slot.
Abstract parent class for all question plugin classes.