ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilResourceOverviewGUI Class Reference
+ Collaboration diagram for ilResourceOverviewGUI:

Public Member Functions

 __construct ()
 
 executeCommand ()
 

Data Fields

const CMD_INDEX = 'index'
 
const CMD_REMOVE = 'remove'
 
const CMD_DOWNLOAD = 'download'
 
const CMD_SHOW_REVISIONS = 'showRevisions'
 
const CMD_GOTO_RESOURCE = 'gotoResource'
 
const P_RESOURCE_ID = 'resource_id'
 

Protected Member Functions

 initBackTab ()
 

Protected Attributes

ilCtrlInterface $ctrl
 
ilLanguage $language
 
Renderer $ui_renderer
 
ilGlobalTemplateInterface $main_tpl
 
Services $irss
 
FileUpload $upload
 
ILIAS HTTP Services $http
 
Factory $refinery
 
ResourceCollection $collection
 
ResourceStakeholder $stakeholder
 
ArrayBasedRequestWrapper $query
 

Private Member Functions

 index ()
 
 showRevisions ()
 
 download ()
 
 getResourceIdFromRequest ()
 

Private Attributes

WrapperFactory $wrapper
 
ilTabsGUI $tabs
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilResourceOverviewGUI::__construct ( )
final

Definition at line 69 of file class.ilResourceOverviewGUI.php.

References $DIC, ILIAS\Repository\ctrl(), ILIAS\UI\examples\Symbol\Glyph\Language\language(), ILIAS\Repository\refinery(), ILIAS\Repository\tabs(), and ILIAS\Repository\upload().

70  {
71  global $DIC;
72  // Services
73  $this->irss = $DIC->resourceStorage();
74  $this->ctrl = $DIC->ctrl();
75  $this->language = $DIC->language();
76  $this->language->loadLanguageModule('irss');
77  $this->main_tpl = $DIC->ui()->mainTemplate();
78  $this->upload = $DIC->upload();
79  $this->wrapper = $DIC->http()->wrapper();
80  $this->refinery = $DIC->refinery();
81  $this->ui_renderer = $DIC->ui()->renderer();
82  $this->tabs = $DIC->tabs();
83  }
global $DIC
Definition: shib_login.php:22
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

Member Function Documentation

◆ download()

ilResourceOverviewGUI::download ( )
private

Definition at line 184 of file class.ilResourceOverviewGUI.php.

References ILIAS\Repository\ctrl(), getResourceIdFromRequest(), and ILIAS\UI\examples\Symbol\Glyph\Language\language().

Referenced by executeCommand().

184  : void
185  {
186  $rid = $this->getResourceIdFromRequest();
187  if (!$rid instanceof ResourceIdentification) {
188  $this->main_tpl->setOnScreenMessage('failure', $this->language->txt('msg_no_perm_read'), true);
189  $this->ctrl->redirect($this, self::CMD_INDEX);
190  return;
191  }
192  $this->irss->consume()->download($rid)->run();
193  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ executeCommand()

ilResourceOverviewGUI::executeCommand ( )
final

Definition at line 98 of file class.ilResourceOverviewGUI.php.

References ILIAS\Repository\ctrl(), download(), index(), and showRevisions().

98  : void
99  {
100  switch ($this->ctrl->getCmd(self::CMD_INDEX)) {
101  case self::CMD_INDEX:
102  $this->index();
103  break;
104  case self::CMD_DOWNLOAD:
105  $this->download();
106  break;
107  case self::CMD_SHOW_REVISIONS:
108  $this->showRevisions();
109  break;
110  case self::CMD_GOTO_RESOURCE:
111  $this->gotoResource();
112  break;
113  }
114  }
+ Here is the call graph for this function:

◆ getResourceIdFromRequest()

ilResourceOverviewGUI::getResourceIdFromRequest ( )
private

Definition at line 196 of file class.ilResourceOverviewGUI.php.

References null, and ILIAS\Repository\refinery().

Referenced by download(), index(), and showRevisions().

197  {
198  $rid = $this->wrapper->query()->has(self::P_RESOURCE_ID) ? $this->wrapper->query()->retrieve(
199  self::P_RESOURCE_ID,
200  $this->refinery->to()->string()
201  ) : ($this->wrapper->post()->has(self::P_RESOURCE_ID)
202  ? $this->wrapper->post()->retrieve(self::P_RESOURCE_ID, $this->refinery->to()->string())
203  : null);
204 
205  if ($rid === null) {
206  return null;
207  }
208 
209  return $this->irss->manage()->find($rid);
210  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ index()

ilResourceOverviewGUI::index ( )
private

Definition at line 116 of file class.ilResourceOverviewGUI.php.

References ILIAS\Repository\ctrl(), ILIAS\ResourceStorage\Stakeholder\ResourceStakeholder\getLocationURIForResourceUsage(), getResourceIdFromRequest(), initBackTab(), ILIAS\UI\examples\Symbol\Glyph\Language\language(), and null.

Referenced by executeCommand().

116  : void
117  {
118  $listing = new ResourceListingUI(
119  new ViewDefinition(
120  self::class,
121  self::CMD_INDEX,
122  $this->language->txt('resource_overview')
123  ),
126  );
127 
128  $this->main_tpl->setContent(
129  $this->ui_renderer->render($listing->getComponents())
130  );
131  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initBackTab()

ilResourceOverviewGUI::initBackTab ( )
protected
Returns
void
Exceptions
ilCtrlException

Definition at line 89 of file class.ilResourceOverviewGUI.php.

References ILIAS\Repository\ctrl(), ILIAS\UI\examples\Symbol\Glyph\Language\language(), and ILIAS\Repository\tabs().

Referenced by index(), and showRevisions().

89  : void
90  {
91  $this->tabs->clearTargets();
92  $this->tabs->setBackTarget(
93  $this->language->txt('back'),
94  $this->ctrl->getLinkTarget($this, self::CMD_INDEX)
95  );
96  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ showRevisions()

ilResourceOverviewGUI::showRevisions ( )
private

Definition at line 159 of file class.ilResourceOverviewGUI.php.

References getResourceIdFromRequest(), initBackTab(), ILIAS\UI\examples\Symbol\Glyph\Language\language(), and ILIAS\components\ResourceStorage\Resources\Listing\ViewDefinition\setMode().

Referenced by executeCommand().

159  : void
160  {
161  $this->initBackTab();
162 
163  $rid = $this->getResourceIdFromRequest();
164  $resource = $this->irss->manage()->getResource($rid);
165 
166  $view_definition = new ViewDefinition(
167  self::class,
168  self::CMD_SHOW_REVISIONS,
169  $this->language->txt('resource_overview')
170  );
171  $view_definition->setMode(ViewDefinition::MODE_AS_TABLE);
172  $listing = new RevisionListingUI(
173  $view_definition,
174  $resource
175  );
176 
177 
178  $this->main_tpl->setContent(
179  $this->ui_renderer->render($listing->getComponents())
180  );
181  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $collection

ResourceCollection ilResourceOverviewGUI::$collection
protected

Definition at line 63 of file class.ilResourceOverviewGUI.php.

◆ $ctrl

ilCtrlInterface ilResourceOverviewGUI::$ctrl
protected

Definition at line 55 of file class.ilResourceOverviewGUI.php.

◆ $http

ILIAS HTTP Services ilResourceOverviewGUI::$http
protected

Definition at line 61 of file class.ilResourceOverviewGUI.php.

◆ $irss

Services ilResourceOverviewGUI::$irss
protected

Definition at line 59 of file class.ilResourceOverviewGUI.php.

◆ $language

ilLanguage ilResourceOverviewGUI::$language
protected

Definition at line 56 of file class.ilResourceOverviewGUI.php.

◆ $main_tpl

ilGlobalTemplateInterface ilResourceOverviewGUI::$main_tpl
protected

Definition at line 58 of file class.ilResourceOverviewGUI.php.

◆ $query

ArrayBasedRequestWrapper ilResourceOverviewGUI::$query
protected

Definition at line 65 of file class.ilResourceOverviewGUI.php.

◆ $refinery

Factory ilResourceOverviewGUI::$refinery
protected

Definition at line 62 of file class.ilResourceOverviewGUI.php.

◆ $stakeholder

ResourceStakeholder ilResourceOverviewGUI::$stakeholder
protected

Definition at line 64 of file class.ilResourceOverviewGUI.php.

◆ $tabs

ilTabsGUI ilResourceOverviewGUI::$tabs
private

Definition at line 67 of file class.ilResourceOverviewGUI.php.

◆ $ui_renderer

Renderer ilResourceOverviewGUI::$ui_renderer
protected

Definition at line 57 of file class.ilResourceOverviewGUI.php.

◆ $upload

FileUpload ilResourceOverviewGUI::$upload
protected

Definition at line 60 of file class.ilResourceOverviewGUI.php.

◆ $wrapper

WrapperFactory ilResourceOverviewGUI::$wrapper
private

Definition at line 66 of file class.ilResourceOverviewGUI.php.

◆ CMD_DOWNLOAD

◆ CMD_GOTO_RESOURCE

const ilResourceOverviewGUI::CMD_GOTO_RESOURCE = 'gotoResource'

◆ CMD_INDEX

const ilResourceOverviewGUI::CMD_INDEX = 'index'

Definition at line 45 of file class.ilResourceOverviewGUI.php.

◆ CMD_REMOVE

const ilResourceOverviewGUI::CMD_REMOVE = 'remove'

◆ CMD_SHOW_REVISIONS

const ilResourceOverviewGUI::CMD_SHOW_REVISIONS = 'showRevisions'

◆ P_RESOURCE_ID

const ilResourceOverviewGUI::P_RESOURCE_ID = 'resource_id'

The documentation for this class was generated from the following file: