ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilECSTestSettings.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once 'Services/WebServices/ECS/classes/class.ilECSObjectSettings.php';
5 
15 {
16  protected function getECSObjectType()
17  {
18  return '/campusconnect/tests';
19  }
20 
21  protected function buildJson(ilECSSetting $a_server)
22  {
23  $json = $this->getJsonCore('application/ecs-test');
24 
25  // $json->status = $this->content_obj->isActivated() ? 'online' : 'offline';
26 
27  return $json;
28  }
29 }
30 
31 ?>