ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ContentLanguage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
25 trait ContentLanguage
26 {
27  protected ?LanguageTag $content_language = null;
28 
29  public function withContentLanguage(LanguageTag $content_language): self
30  {
31  $clone = clone $this;
32  $clone->content_language = $content_language;
33  return $clone;
34  }
35 
36  public function getContentLanguage(): ?LanguageTag
37  {
38  return $this->content_language;
39  }
40 }
withContentLanguage(LanguageTag $content_language)
This class represents a valid language tag that should be used instead of plain strings.
Definition: LanguageTag.php:39
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null