ILIAS  release_7 Revision v7.30-3-g800a261c036
ilAssQuestionFeedbackPageObjectCommandForwarder Class Reference
+ Inheritance diagram for ilAssQuestionFeedbackPageObjectCommandForwarder:
+ Collaboration diagram for ilAssQuestionFeedbackPageObjectCommandForwarder:

Public Member Functions

 __construct (assQuestion $questionOBJ, ilCtrl $ctrl, ilTabsGUI $tabs, ilLanguage $lng)
 Constructor. More...
 
 forward ()
 forward method More...
 
 ensurePageObjectExists ($pageObjectType, $pageObjectId)
 ensures an existing page object with giben type/id More...
 
 getPageObjectGUI ($pageObjectType, $pageObjectId)
 instantiates, initialises and returns a page object gui class More...
 
 __construct (assQuestion $questionOBJ, ilCtrl $ctrl, ilTabsGUI $tabs, ilLanguage $lng)
 Constructor. More...
 
 forward ()
 this is the actual forward method that is to be implemented by derived forwarder classes More...
 

Additional Inherited Members

 ensurePageObjectExists ($pageObjectType, $pageObjectId)
 ensures an existing page object with giben type/id More...
 
 getPageObjectGUI ($pageObjectType, $pageObjectId)
 instantiates, initialises and returns a page object gui object More...
 
- Protected Attributes inherited from ilAssQuestionAbstractPageObjectCommandForwarder
 $questionOBJ = null
 
 $ctrl = null
 
 $tabs = null
 
 $lng = null
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilAssQuestionFeedbackPageObjectCommandForwarder::__construct ( assQuestion  $questionOBJ,
ilCtrl  $ctrl,
ilTabsGUI  $tabs,
ilLanguage  $lng 
)

Constructor.

@access public

Parameters
assQuestion$questionOBJ
ilCtrl$ctrl
ilTabsGUI$tabs
ilLanguage$lng

Reimplemented from ilAssQuestionAbstractPageObjectCommandForwarder.

Definition at line 25 of file class.ilAssQuestionFeedbackPageObjectCommandForwarder.php.

26 {
28
29 if (!isset($_GET['feedback_id']) || !(int) $_GET['feedback_id'] || !$questionOBJ->feedbackOBJ->checkFeedbackParent((int) $_GET['feedback_id'])) {
30 ilUtil::sendFailure('invalid feedback id given: ' . (int) $_GET['feedback_id'], true);
31 $this->ctrl->redirectByClass('ilAssQuestionFeedbackEditingGUI', ilAssQuestionFeedbackEditingGUI::CMD_SHOW);
32 }
33
34 if (!isset($_GET['feedback_type']) || !ilAssQuestionFeedback::isValidFeedbackPageObjectType($_GET['feedback_type'])) {
35 ilUtil::sendFailure('invalid feedback type given: ' . $_GET['feedback_type'], true);
36 $this->ctrl->redirectByClass('ilAssQuestionFeedbackEditingGUI', ilAssQuestionFeedbackEditingGUI::CMD_SHOW);
37 }
38 }
$_GET["client_id"]
static isValidFeedbackPageObjectType($feedbackPageObjectType)
returns the fact wether the given page object type relates to generic or specific feedback page objec...
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc

References $_GET, ilAssQuestionAbstractPageObjectCommandForwarder\$ctrl, ilAssQuestionAbstractPageObjectCommandForwarder\$lng, ilAssQuestionAbstractPageObjectCommandForwarder\$questionOBJ, ilAssQuestionAbstractPageObjectCommandForwarder\$tabs, ILIAS\GlobalScreen\Provider\__construct(), ilAssQuestionFeedbackEditingGUI\CMD_SHOW, ilAssQuestionFeedback\isValidFeedbackPageObjectType(), and ilUtil\sendFailure().

+ Here is the call graph for this function:

Member Function Documentation

◆ ensurePageObjectExists()

ilAssQuestionFeedbackPageObjectCommandForwarder::ensurePageObjectExists (   $pageObjectType,
  $pageObjectId 
)

ensures an existing page object with giben type/id

@access protected

Reimplemented from ilAssQuestionAbstractPageObjectCommandForwarder.

Definition at line 65 of file class.ilAssQuestionFeedbackPageObjectCommandForwarder.php.

66 {
68 && !ilAssGenFeedbackPage::_exists($pageObjectType, $pageObjectId, '', true)) {
69 $pageObject = new ilAssGenFeedbackPage();
70 $pageObject->setParentId($this->questionOBJ->getId());
71 $pageObject->setId($pageObjectId);
72 $pageObject->createFromXML();
73 }
75 && !ilAssSpecFeedbackPage::_exists($pageObjectType, $pageObjectId, '', true)) {
76 $pageObject = new ilAssSpecFeedbackPage();
77 $pageObject->setParentId($this->questionOBJ->getId());
78 $pageObject->setId($pageObjectId);
79 $pageObject->createFromXML();
80 }
81 }
Generic feedback page object.
const PAGE_OBJECT_TYPE_GENERIC_FEEDBACK
type for generic feedback page objects
const PAGE_OBJECT_TYPE_SPECIFIC_FEEDBACK
type for specific feedback page objects
Specific feedback page object.
static _exists($a_parent_type, $a_id, $a_lang="", $a_no_cache=false)
Checks whether page exists.

References ilPageObject\_exists(), ilAssQuestionFeedback\PAGE_OBJECT_TYPE_GENERIC_FEEDBACK, and ilAssQuestionFeedback\PAGE_OBJECT_TYPE_SPECIFIC_FEEDBACK.

+ Here is the call graph for this function:

◆ forward()

ilAssQuestionFeedbackPageObjectCommandForwarder::forward ( )

forward method

Reimplemented from ilAssQuestionAbstractPageObjectCommandForwarder.

Definition at line 43 of file class.ilAssQuestionFeedbackPageObjectCommandForwarder.php.

44 {
45 $pageObjectGUI = $this->getPageObjectGUI($_GET['feedback_type'], $_GET['feedback_id']);
46
47 $pageObjectGUI->setEnabledTabs(true);
48
49 $this->tabs->setBackTarget(
50 $this->lng->txt('tst_question_feedback_back_to_feedback_form'),
51 $this->ctrl->getLinkTargetByClass('ilAssQuestionFeedbackEditingGUI', ilAssQuestionFeedbackEditingGUI::CMD_SHOW)
52 );
53
54 $this->ctrl->setParameter($pageObjectGUI, 'feedback_id', $_GET['feedback_id']);
55 $this->ctrl->setParameter($pageObjectGUI, 'feedback_type', $_GET['feedback_type']);
56
57 $this->ctrl->forwardCommand($pageObjectGUI);
58 }
getPageObjectGUI($pageObjectType, $pageObjectId)
instantiates, initialises and returns a page object gui class

References $_GET, ilAssQuestionFeedbackEditingGUI\CMD_SHOW, and getPageObjectGUI().

+ Here is the call graph for this function:

◆ getPageObjectGUI()

ilAssQuestionFeedbackPageObjectCommandForwarder::getPageObjectGUI (   $pageObjectType,
  $pageObjectId 
)

instantiates, initialises and returns a page object gui class

@access protected

Returns
ilAssGenFeedbackPageGUI|ilAssSpecFeedbackPageGUI

Reimplemented from ilAssQuestionAbstractPageObjectCommandForwarder.

Definition at line 89 of file class.ilAssQuestionFeedbackPageObjectCommandForwarder.php.

90 {
91 include_once("./Modules/TestQuestionPool/classes/feedback/class.ilAssQuestionFeedback.php");
93 include_once("./Modules/TestQuestionPool/classes/feedback/class.ilAssGenFeedbackPageGUI.php");
94 $pageObjectGUI = new ilAssGenFeedbackPageGUI($pageObjectId);
95 $pageObjectGUI->obj->addUpdateListener(
96 $this->questionOBJ,
97 'updateTimestamp'
98 );
99 return $pageObjectGUI;
100 }
102 include_once("./Modules/TestQuestionPool/classes/feedback/class.ilAssSpecFeedbackPageGUI.php");
103 $pageObjectGUI = new ilAssSpecFeedbackPageGUI($pageObjectId);
104 $pageObjectGUI->obj->addUpdateListener(
105 $this->questionOBJ,
106 'updateTimestamp'
107 );
108 return $pageObjectGUI;
109 }
110 }
Generic feedback page GUI class.
Specific feedback page GUI class.

References ilAssQuestionFeedback\PAGE_OBJECT_TYPE_GENERIC_FEEDBACK, and ilAssQuestionFeedback\PAGE_OBJECT_TYPE_SPECIFIC_FEEDBACK.

Referenced by forward().

+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: