ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilAppEventHandler.php
Go to the documentation of this file.
1<?php
2/*
3 +-----------------------------------------------------------------------------+
4 | ILIAS open source |
5 +-----------------------------------------------------------------------------+
6 | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7 | |
8 | This program is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU General Public License |
10 | as published by the Free Software Foundation; either version 2 |
11 | of the License, or (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 +-----------------------------------------------------------------------------+
22*/
23
24require_once './Services/WorkflowEngine/classes/class.ilWorkflowEngine.php';
25
59{
60 protected $listener; // [array]
61
65 public function __construct()
66 {
67 $this->initListeners();
68 }
69
70 protected function initListeners()
71 {
72 require_once('./Services/GlobalCache/classes/class.ilGlobalCache.php');
74 $cached_listeners = $ilGlobalCache->get('listeners');
75 if (is_array($cached_listeners)) {
76 $this->listener = $cached_listeners;
77
78 return;
79 }
80
81 global $ilDB;
82
83 $this->listener = array();
84
85 $sql = "SELECT * FROM il_event_handling".
86 " WHERE type = ".$ilDB->quote("listen", "text");
87 $res = $ilDB->query($sql);
88 while($row = $ilDB->fetchAssoc($res))
89 {
90 $this->listener[$row["id"]][] = $row["component"];
91 }
92
93 $ilGlobalCache->set('listeners', $this->listener);
94 }
95
96
97
105 function raise($a_component, $a_event, $a_parameter = "")
106 {
107 if (is_array($this->listener[$a_component]))
108 {
109 foreach ($this->listener[$a_component] as $listener)
110 {
111 // Allow listeners like Services/WebServices/ECS
112 $last_slash = strripos($listener,'/');
113 $comp = substr($listener,0,$last_slash);
114 $class = 'il'.substr($listener,$last_slash + 1).'AppEventListener';
115 $file = "./".$listener."/classes/class.".$class.".php";
116
117 // detemine class and file
118 #$comp = explode("/", $listener);
119 #$class = "il".$comp[1]."AppEventListener";
120 #$file = "./".$listener."/classes/class.".$class.".php";
121
122 // if file exists, call listener
123 if (is_file($file))
124 {
125 include_once($file);
126 call_user_func(array($class, 'handleEvent'), $a_component, $a_event, $a_parameter);
127 }
128 }
129 }
130
131 // get all event hook plugins and forward the event to them
132 include_once("./Services/Component/classes/class.ilPluginAdmin.php");
133 $plugins = ilPluginAdmin::getActivePluginsForSlot("Services", "EventHandling", "evhk");
134 foreach ($plugins as $pl)
135 {
136 $plugin = ilPluginAdmin::getPluginObject("Services", "EventHandling",
137 "evhk", $pl);
138 $plugin->handleEvent($a_component, $a_event, $a_parameter);
139 }
140
141 $workflow_engine = new ilWorkflowEngine(false);
142 $workflow_engine->handleEvent($a_component, $a_event, $a_parameter);
143 }
144}
145?>
An exception for terminatinating execution or to throw for unit testing.
Global event handler.
static getInstance($component)
static getPluginObject($a_ctype, $a_cname, $a_slot_id, $a_pname)
Get Plugin Object.
static getActivePluginsForSlot($a_ctype, $a_cname, $a_slot_id)
Get all active plugins for a slot.
ilWorkflowEngine is part of the petri net based workflow engine.
if(!file_exists("$old.txt")) if( $old===$new) if(file_exists("$new.txt")) $file
global $ilDB