1<?php
2
3/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once("./Services/Component/classes/class.ilService.php");
6
7/**
8 * EventHandling Service.
9 *
10 * @author  Alex Killing <alex.killing@gmx.de>
11 * @version $Id$
12 *
13 * @ingroup ServicesUIComponent
14 */
15class ilUIComponentService extends ilService
16{
17
18    /**
19     * Constructor: read information on component
20     */
21    public function __construct()
22    {
23        parent::__construct();
24    }
25
26
27    /**
28     * Core modules vs. plugged in modules
29     */
30    public function isCore()
31    {
32        return true;
33    }
34
35
36    /**
37     * Get version of service.
38     */
39    public function getVersion()
40    {
41        return "-";
42    }
43}
44