1<?php 2/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */ 3 4include_once("./Services/Component/classes/class.ilModule.php"); 5 6/** 7 * Class ilCloudModule 8 * 9 * @author Alex Killing <alex.killing@gmx.de> 10 * @author Timon Amstutz <timon.amstutz@ilub.unibe.ch> 11 * @version $Id: 12 * 13 * @ingroup ModulesCloud 14 */ 15class ilCloudModule extends ilModule 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 module. This is especially important for 38 * non-core modules. 39 */ 40 public function getVersion() 41 { 42 return "-"; 43 } 44} 45