ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilChatroomTaskHandler.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8{
12 abstract public function __construct(ilChatroomObjectGUI $gui);
13
18 abstract public function executeDefault($requestedMethod);
19
26 public function execute($method)
27 {
31 global $lng;
32
33 $lng->loadLanguageModule('chatroom');
34
35 require_once 'Modules/Chatroom/classes/class.ilChatroom.php';
36
37 if(method_exists($this, $method))
38 {
39 return $this->$method();
40 }
41 else
42 {
43 return $this->executeDefault($method);
44 }
45 }
46}
__construct(ilChatroomObjectGUI $gui)
executeDefault($requestedMethod)
global $lng
Definition: privfeed.php:40