ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectCustomIconUploadHandlerGUI Class Reference
+ Inheritance diagram for ilObjectCustomIconUploadHandlerGUI:
+ Collaboration diagram for ilObjectCustomIconUploadHandlerGUI:

Public Member Functions

 getInfoResult (string $file_name)
 
 getInfoForExistingFiles (array $file_names)
 
- Public Member Functions inherited from ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler
 __construct ()
 ilUIDemoFileUploadHandlerGUI constructor. More...
 
 getFileIdentifierParameterName ()
 
 getUploadURL ()
 
 getExistingFileInfoURL ()
 
 getFileRemovalURL ()
 
 executeCommand ()
 Since this is a ilCtrl aware UploadHandler executeCommand MUST be implemented. More...
 
 getInfoResult (string $identifier)
 
 getInfoForExistingFiles (array $file_ids)
 
 supportsChunkedUploads ()
 

Protected Member Functions

 getUploadResult ()
 
 getRemoveResult (string $file_name)
 
- Protected Member Functions inherited from ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler
 readChunkedInformation ()
 
 getUploadResult ()
 
 getRemoveResult (string $identifier)
 

Protected Attributes

ilLanguage $language
 
bool $has_access = false
 
- Protected Attributes inherited from ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler
const CMD_UPLOAD = 'upload'
 
const CMD_REMOVE = 'remove'
 
const CMD_INFO = 'info'
 
HttpServices $http
 
ilCtrl $ctrl
 
FileUpload $upload
 
bool $is_chunked = false
 
int $chunk_index = 0
 
int $amount_of_chunks = 0
 
string $chunk_id = null
 
int $chunk_total_size = 0
 

Additional Inherited Members

- Data Fields inherited from ILIAS\UI\Component\Input\Field\UploadHandler
const DEFAULT_FILE_ID_PARAMETER = 'file_id'
 

Detailed Description

Member Function Documentation

◆ getInfoForExistingFiles()

ilObjectCustomIconUploadHandlerGUI::getInfoForExistingFiles ( array  $file_names)
Returns
[]

Implements ILIAS\UI\Component\Input\Field\UploadHandler.

Definition at line 140 of file class.ilObjectCustomIconUploadHandlerGUI.php.

References getInfoResult().

140  : array
141  {
142  return [$this->getInfoResult('custom_icon')];
143  }
+ Here is the call graph for this function:

◆ getInfoResult()

ilObjectCustomIconUploadHandlerGUI::getInfoResult ( string  $identifier)
Returns
null|FileInfoResult for the file with the given identifier or null if the file does not exist.

Implements ILIAS\UI\Component\Input\Field\UploadHandler.

Definition at line 120 of file class.ilObjectCustomIconUploadHandlerGUI.php.

References ILIAS\UI\examples\Symbol\Icon\Custom\custom_icon(), ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler\getFileIdentifierParameterName(), ILIAS\UI\examples\Symbol\Glyph\Language\language(), and null.

Referenced by getInfoForExistingFiles().

120  : ?FileInfoResult
121  {
122  if ($this->has_access === false) {
123  return null;
124  }
125 
126  $file_path = $this->custom_icon->getFullPath();
127 
128  return new BasicFileInfoResult(
130  'custom_icon',
131  $this->language->txt('custom_icon'),
132  filesize($file_path),
133  MimeType::IMAGE__SVG_XML
134  );
135  }
custom_icon()
description: > Example for rendering custom icons.
Definition: custom_icon.php:33
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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:

◆ getRemoveResult()

ilObjectCustomIconUploadHandlerGUI::getRemoveResult ( string  $file_name)
protected

Definition at line 102 of file class.ilObjectCustomIconUploadHandlerGUI.php.

References ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler\getFileIdentifierParameterName(), and ILIAS\UI\examples\Symbol\Glyph\Language\language().

102  : HandlerResult
103  {
104  if ($this->has_access === false) {
105  return $this->getAccessFailureResult(
107  $file_name,
108  $this->language
109  );
110  }
111 
112  return new BasicHandlerResult(
114  HandlerResult::STATUS_OK,
115  $file_name,
116  'There is nothing to do here.'
117  );
118  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

◆ getUploadResult()

ilObjectCustomIconUploadHandlerGUI::getUploadResult ( )
protected

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

References $message, ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler\getFileIdentifierParameterName(), ilFileUtils\ilTempnam(), ILIAS\FileUpload\DTO\UploadResult\isOK(), ILIAS\UI\examples\Symbol\Glyph\Language\language(), ilObjectPropertyIcon\SUPPORTED_MIME_TYPES, and ILIAS\Repository\upload().

67  {
68  $tempfile = '';
69  if ($this->has_access === false) {
70  return $this->getAccessFailureResult(
72  $file_name,
73  $this->language
74  );
75  }
76 
77  $this->upload->process();
78 
79  $result_array = $this->upload->getResults();
80  $result = end($result_array);
81 
82  if ($result instanceof UploadResult
83  && in_array($result->getMimeType(), ilObjectPropertyIcon::SUPPORTED_MIME_TYPES)
84  && $result->isOK()) {
85  $status = HandlerResult::STATUS_OK;
86  $message = 'Upload ok';
87  $tempfile = ilFileUtils::ilTempnam();
88  rename($result->getPath(), $tempfile);
89  } else {
90  $status = HandlerResult::STATUS_FAILED;
91  $message = $result->getStatus()->getMessage();
92  }
93 
94  return new BasicHandlerResult(
96  $status,
97  basename($tempfile),
98  $message
99  );
100  }
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
$message
Definition: xapiexit.php:31
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

Field Documentation

◆ $has_access

bool ilObjectCustomIconUploadHandlerGUI::$has_access = false
protected

Definition at line 38 of file class.ilObjectCustomIconUploadHandlerGUI.php.

◆ $language

ilLanguage ilObjectCustomIconUploadHandlerGUI::$language
protected

Definition at line 37 of file class.ilObjectCustomIconUploadHandlerGUI.php.


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