ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilECSCourseSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
29 {
30  protected ilLogger $logger;
32 
33  public function __construct(ilObject $a_content_object)
34  {
35  global $DIC;
36 
37  $this->logger = $DIC->logger()->crs();
38  $this->lom_services = $DIC->learningObjectMetadata();
39  parent::__construct($a_content_object);
40  }
41 
42  protected function getECSObjectType(): string
43  {
44  return '/campusconnect/courselinks';
45  }
46 
47  protected function buildJson(ilECSSetting $a_server)
48  {
49  $json = $this->getJsonCore('application/ecs-course');
50 
51  // meta language
52  $lang = $this->lom_services->read(
53  $this->content_obj->getId(),
54  $this->content_obj->getId(),
55  $this->content_obj->getType(),
56  $this->lom_services->paths()->languages()
57  )->firstData($this->lom_services->paths()->languages())->value();
58 
59  if (strlen($lang) !== 0) {
60  $json->lang = $lang . '_' . strtoupper($lang);
61  }
62  $json->status = $this->content_obj->isActivated() ? 'online' : 'offline';
63 
65  $this->addMetadataToJson($json, $a_server, $definition);
66  $json->courseID = 'il_' . IL_INST_ID . '_' . $this->getContentObject()->getType() . '_' . $this->getContentObject()->getId();
67  return $json;
68  }
69 }
const IL_INST_ID
Definition: constants.php:40
static getEContentDefinition(string $a_resource_id)
Get econtent / metadata definition.
addMetadataToJson(object $a_json, ilECSSetting $a_server, array $a_definition)
Add advanced metadata to json (export)
__construct(ilObject $a_content_object)
getContentObject()
Get content object.
global $DIC
Definition: shib_login.php:22
getJsonCore(string $a_etype)
Build core json structure.
$lang
Definition: xapiexit.php:25
buildJson(ilECSSetting $a_server)
__construct(Container $dic, ilPlugin $plugin)
Handles object exports to ECS.
Class ilECSCourseSettings.