ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ObjectiveViewManager.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
29{
31 protected DataService $data;
32 protected \ilContainer $container;
33
34 public function __construct(
35 DataService $data_service,
36 InternalDomainService $domain_service,
38 ) {
39 $this->data = $data_service;
40 $this->domain = $domain_service;
41 $this->container = $container;
42 }
43
45 {
46 $blocks = [];
47 $blocks[] = $this->data->objectivesBlock();
48 $blocks[] = $this->data->itemGroupBlocks();
49 $blocks[] = $this->data->otherBlock();
50 return $this->data->blockSequence($blocks);
51 }
52}
__construct(DataService $data_service, InternalDomainService $domain_service, \ilContainer $container)
Class ilContainer.