1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once 'Services/WebServices/ECS/classes/class.ilECSObjectSettings.php';
5
6/**
7* Class ilECSTestSettings
8*
9* @author Stefan Meyer <smeyer.ilias@gmx.de>
10* $Id: class.ilObjCourseGUI.php 31646 2011-11-14 11:39:37Z jluetzen $
11*
12* @ingroup ModulesTest
13*/
14class ilECSTestSettings extends ilECSObjectSettings
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