ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Exercise\Settings;
22 
27 
29 {
30  public function __construct(
31  protected InternalDataService $data,
32  protected InternalRepoService $repo,
33  protected InternalDomainService $domain
34  ) {
35  }
36 
37 
38  public function create(Settings $settings): void
39  {
40  $this->repo->settings()->create($settings);
41  }
42 
43  public function update(Settings $settings): void
44  {
45  $this->repo->settings()->update($settings);
46  }
47 
48  public function getByObjId(int $id): ?Settings
49  {
50  return $this->repo->settings()->getByObjId($id);
51  }
52 
53  public function clone($from_id, $to_id): void
54  {
55  $settings = $this->repo->settings()->getByObjId($from_id);
56  $settings = $settings->withObjId($to_id);
57  $this->update($settings);
58  }
59 }
__construct(protected InternalDataService $data, protected InternalRepoService $repo, protected InternalDomainService $domain)
Internal factory for data objects.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23