ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SessionsViewManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Container\Content;
22 
24 
29 {
31  protected DataService $data;
32  protected \ilContainer $container;
33 
34  public function __construct(
35  DataService $data_service,
36  InternalDomainService $domain_service,
37  \ilContainer $container
38  ) {
39  $this->data = $data_service;
40  $this->domain = $domain_service;
41  $this->container = $container;
42  }
43 
44  public function getBlockSequence(): BlockSequence
45  {
46  $blocks = [];
47  $blocks[] = $this->data->sessionBlock();
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...