ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectCommonSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 
33 {
34  private ?ilObject $object = null;
35 
36  public function __construct(
37  private ilLanguage $language,
38  private FileUpload $upload,
39  private ResourceStorageServices $storage,
40  private Services $http,
41  private ilObjectTileImageStakeholder $stakeholder,
42  private ilObjectTileImageFlavourDefinition $flavour
43  ) {
44  }
45 
47  {
48  return $this->object?->getObjectProperties()->getPropertyTitleAndIconVisibility();
49  }
50 
52  ilObjectPropertyTitleAndIconVisibility $property_title_and_icon_visibility
53  ): void {
54  $this->object?->getObjectProperties()->storePropertyTitleAndIconVisibility($property_title_and_icon_visibility);
55  $this->object?->flushObjectProperties();
56  }
57 
59  {
60  return $this->object?->getObjectProperties()->getPropertyHeaderActionVisibility();
61  }
62 
64  ilObjectPropertyHeaderActionVisibility $property_header_action_visibility
65  ): void {
66  $this->object?->getObjectProperties()->storePropertyHeaderActionVisibility($property_header_action_visibility);
67  $this->object?->flushObjectProperties();
68  }
69 
71  {
72  return $this->object?->getObjectProperties()->getPropertyTileImage();
73  }
74 
75  public function storePropertyTileImage(
76  ilObjectPropertyTileImage $property_tile_image
77  ): void {
78  $this->object?->getObjectProperties()->storePropertyTileImage($property_tile_image);
79  $this->object?->flushObjectProperties();
80  }
81 
83  {
84  return $this->object?->getObjectProperties()->getPropertyIcon();
85  }
86 
87  public function storePropertyIcon(
88  ilObjectPropertyIcon $property_icon
89  ): void {
90  $this->object?->getObjectProperties()->storePropertyIcon($property_icon);
91  $this->object?->flushObjectProperties();
92  }
93 
101  {
102  $this->object = $object;
103 
105  $this->language,
106  $this->upload,
107  $this->storage,
108  $this->stakeholder,
109  $this->flavour,
110  $this,
111  $this->http,
112  $form
113  );
114  }
115 }
storePropertyTileImage(ilObjectPropertyTileImage $property_tile_image)
storePropertyHeaderActionVisibility(ilObjectPropertyHeaderActionVisibility $property_header_action_visibility)
$http
Definition: deliver.php:30
__construct(private ilLanguage $language, private FileUpload $upload, private ResourceStorageServices $storage, private Services $http, private ilObjectTileImageStakeholder $stakeholder, private ilObjectTileImageFlavourDefinition $flavour)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class FileUpload.
Definition: FileUpload.php:37
storePropertyIcon(ilObjectPropertyIcon $property_icon)
storePropertyTitleAndIconVisibility(ilObjectPropertyTitleAndIconVisibility $property_title_and_icon_visibility)
legacyForm(ilPropertyFormGUI $form, ilObject $object)
11: This function will be remove with ILIAS 11.
language()
description: > Example for rendring a language glyph.
Definition: language.php:41