ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilSurveyAppEventListener Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilSurveyAppEventListener:
+ Collaboration diagram for ilSurveyAppEventListener:

Static Public Member Functions

static handleEvent (string $a_component, string $a_event, array $a_parameter)
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning

Author
Thomas Famula famul.nosp@m.a@le.nosp@m.ifos..nosp@m.de

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

Member Function Documentation

◆ handleEvent()

static ilSurveyAppEventListener::handleEvent ( string  $a_component,
string  $a_event,
array  $a_parameter 
)
static

Implements ilAppEventListener.

Definition at line 30 of file class.ilSurveyAppEventListener.php.

References $DIC.

30  : void
31  {
32  global $DIC;
33 
34  $survey_skill_deletion_manager = $DIC->skills()->internalSurvey()->manager()->getSkillDeletionManager();
35 
36  switch ($a_component) {
37  case "Services/Skill":
38  switch ($a_event) {
39  case "deleteSkill":
40  $survey_skill_deletion_manager->removeSurveySkillsForSkill(
41  $a_parameter["node_id"],
42  $a_parameter["is_reference"]
43  );
44  break;
45  }
46  break;
47  }
48  }
global $DIC
Definition: feed.php:28

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