ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
34  //
35  // no late static binding yet
36  //
37 
38  public static function _lookupMID($a_obj_id)
39  {
40  return ilRemoteObjectBase::_lookupMID($a_obj_id, self::DB_TABLE_NAME);
41  }
42 
43  public static function _lookupOrganization($a_obj_id)
44  {
45  return ilRemoteObjectBase::_lookupOrganization($a_obj_id, self::DB_TABLE_NAME);
46  }
47 }
48 
49 ?>