ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
ClientSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
30 {
34  private $hashing = true;
38  private $logging = false;
39 
40  public function setHashing(bool $hashing) : self
41  {
42  $this->hashing = $hashing;
43 
44  return $this;
45  }
46 
47  public function setLogging(bool $logging) : self
48  {
49  $this->logging = $logging;
50 
51  return $this;
52  }
53 
57  public function jsonSerialize()
58  {
59  return [
60  'hashing' => $this->hashing,
61  'logging' => $this->logging,
62  ];
63  }
64 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: gs_content.php:1