ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
56 {
60  function __construct()
61  {
62  // this information should be determined by service/module
63  // xml files in the future
64  $this->listener["Services/News"] = array("Modules/Forum");
65  $this->listener['Modules/Group'] = array('Services/Calendar');
66  $this->listener['Modules/Session'] = array('Services/Calendar');
67  $this->listener['Modules/Course'] = array('Services/Calendar','Services/WebServices/ECS','Services/ContainerReference');
68  $this->listener['Modules/Category'] = array('Services/ContainerReference');
69  $this->listener['Modules/RemoteCourse'] = array('Services/WebServices/ECS');
70  $this->listener["Services/Object"] = array("Services/Tagging");
71  }
72 
73 
81  function raise($a_component, $a_event, $a_parameter = "")
82  {
83  if (is_array($this->listener[$a_component]))
84  {
85  foreach ($this->listener[$a_component] as $listener)
86  {
87  // Allow listeners like Services/WebServices/ECS
88  $last_slash = strripos($listener,'/');
89  $comp = substr($listener,0,$last_slash);
90  $class = 'il'.substr($listener,$last_slash + 1).'AppEventListener';
91  $file = "./".$listener."/classes/class.".$class.".php";
92 
93  // detemine class and file
94  #$comp = explode("/", $listener);
95  #$class = "il".$comp[1]."AppEventListener";
96  #$file = "./".$listener."/classes/class.".$class.".php";
97 
98  // if file exists, call listener
99  if (is_file($file))
100  {
101  include_once($file);
102  call_user_func(array($class, 'handleEvent'), $a_component, $a_event, $a_parameter);
103  }
104  }
105  }
106  }
107 }
108 ?>