ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDCopyrightUsageGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
31 {
32  public const string DEFAULT_CMD = 'showUsageTable';
33 
35 
37  protected ilCtrl $ctrl;
38  protected ilLanguage $lng;
39  protected ilTabsGUI $tabs;
41  protected Factory $refinery;
42 
43  public function __construct(EntryInterface $entry)
44  {
45  global $DIC;
46 
47  $this->tpl = $DIC->ui()->mainTemplate();
48  $this->http = $DIC->http();
49  $this->ctrl = $DIC->ctrl();
50  $this->lng = $DIC->language();
51  $this->tabs = $DIC->tabs();
52  $this->refinery = $DIC->refinery();
53 
54  $this->entry = $entry;
55  }
56 
57  public function executeCommand(): void
58  {
59  // save usage id for all request
60  $this->ctrl->saveParameter($this, 'entry_id');
61 
62  $user = '';
63  if ($this->http->wrapper()->query()->has('user')) {
64  $user = $this->http->wrapper()->query()->retrieve(
65  'user',
66  $this->refinery->kindlyTo()->string()
67  );
68  }
69 
70  $this->setTabs();
71  $next_class = $this->ctrl->getNextClass($this);
72  switch ($this->ctrl->getNextClass($this)) {
73  case 'ilpublicuserprofilegui':
74  $profile_gui = new ilPublicUserProfileGUI($this->http->wrapper()->query()->retrieve(
75  'user',
76  $this->refinery->kindlyTo()->int()
77  ));
78  $profile_gui->setBackUrl(
79  $this->ctrl->getLinkTarget($this, self::DEFAULT_CMD)
80  );
81  $html = $this->ctrl->forwardCommand($profile_gui);
82  $this->tpl->setContent($html);
83  break;
84 
85  default:
86  $cmd = $this->ctrl->getCmd(self::DEFAULT_CMD);
87  $this->$cmd();
88  break;
89  }
90  }
91 
92  public function showUsageTable(): void
93  {
94  $this->tpl->setOnScreenMessage('info', $this->lng->txt("meta_info_only_repository_objects"));
95 
96  $table_gui = new ilMDCopyrightUsageTableGUI(
97  $this,
98  self::DEFAULT_CMD,
99  );
100  $table_gui->setFilterCommand("applyUsageFilter");
101  $table_gui->setResetCommand("resetUsageFilter");
102  $table_gui->init();
103  $table_gui->parse();
104 
105  $this->tpl->setContent($table_gui->getHTML());
106  }
107 
108  public function getEntryId(): int
109  {
110  return $this->entry->id();
111  }
112 
113  public function getEntryTitle(): string
114  {
115  return $this->entry->title();
116  }
117 
118  protected function applyUsageFilter(): void
119  {
120  $table_gui = new ilMDCopyrightUsageTableGUI(
121  $this,
122  self::DEFAULT_CMD,
123  );
124  $table_gui->init();
125  $table_gui->resetOffset(); // sets record offset to 0 (first page)
126  $table_gui->writeFilterToSession(); // writes filter to session
127 
128  $this->ctrl->redirect($this, self::DEFAULT_CMD);
129  }
130 
131  protected function resetUsageFilter(): void
132  {
133  $table_gui = new ilMDCopyrightUsageTableGUI(
134  $this,
135  self::DEFAULT_CMD,
136  );
137  $table_gui->init();
138  $table_gui->resetOffset(); // sets record offest to 0 (first page)
139  $table_gui->resetFilter(); // clears filter
140 
141  $this->ctrl->redirect($this, self::DEFAULT_CMD);
142  }
143 
144  protected function setTabs(): void
145  {
146  $this->tabs->clearTargets();
147  $this->tabs->setBackTarget(
148  $this->lng->txt('back'),
149  $this->ctrl->getParentReturn($this)
150  );
151  }
152 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
__construct(EntryInterface $entry)