ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilObjRemoteCategory.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once('Services/WebServices/ECS/classes/class.ilRemoteObjectBase.php');
5 
16 {
17  const DB_TABLE_NAME = "rcat_settings";
18 
19  public function initType()
20  {
21  $this->type = "rcat";
22  }
23 
24  protected function getTableName()
25  {
26  return self::DB_TABLE_NAME;
27  }
28 
29  protected function getECSObjectType()
30  {
31  return "/campusconnect/categories";
32  }
33 }
Remote object app base class.
Remote category app class.