ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilUIDemoFileUploadHandlerGUI Class Reference

Class ilUIDemoFileUploadHandlerGUI. More...

+ Inheritance diagram for ilUIDemoFileUploadHandlerGUI:
+ Collaboration diagram for ilUIDemoFileUploadHandlerGUI:

Public Member Functions

 getUploadURL ()
 
 getExistingFileInfoURL ()
 
 getFileRemovalURL ()
 
 getFileIdentifierParameterName ()
 
 getInfoResult (string $identifier)
 
 getInfoForExistingFiles (array $file_ids)
 
- 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 $identifier)
 
- Protected Member Functions inherited from ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler
 readChunkedInformation ()
 
 getUploadResult ()
 
 getRemoveResult (string $identifier)
 

Additional Inherited Members

- Data Fields inherited from ILIAS\UI\Component\Input\Field\UploadHandler
const DEFAULT_FILE_ID_PARAMETER = 'file_id'
 
- 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
 

Detailed Description

Member Function Documentation

◆ getExistingFileInfoURL()

ilUIDemoFileUploadHandlerGUI::getExistingFileInfoURL ( )

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

Definition at line 44 of file class.ilUIDemoFileUploadHandlerGUI.php.

References ILIAS\Repository\ctrl().

44  : string
45  {
46  return $this->ctrl->getLinkTargetByClass([ilUIPluginRouterGUI::class, self::class], self::CMD_INFO);
47  }
+ Here is the call graph for this function:

◆ getFileIdentifierParameterName()

ilUIDemoFileUploadHandlerGUI::getFileIdentifierParameterName ( )

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

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

Referenced by getInfoForExistingFiles(), getInfoResult(), getRemoveResult(), and getUploadResult().

67  : string
68  {
69  return 'my_file_id';
70  }
+ Here is the caller graph for this function:

◆ getFileRemovalURL()

ilUIDemoFileUploadHandlerGUI::getFileRemovalURL ( )

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

Definition at line 53 of file class.ilUIDemoFileUploadHandlerGUI.php.

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

53  : string
54  {
55  return $this->ctrl->getLinkTargetByClass(
56  [ilUIPluginRouterGUI::class, self::class],
57  self::CMD_REMOVE,
58  null,
59  false
60  );
61  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ getInfoForExistingFiles()

ilUIDemoFileUploadHandlerGUI::getInfoForExistingFiles ( array  $file_ids)
Parameters
array$file_ids
Returns
BasicFileInfoResult[]

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

Definition at line 107 of file class.ilUIDemoFileUploadHandlerGUI.php.

References getFileIdentifierParameterName().

107  : array
108  {
109  $infos = [];
110  foreach ($file_ids as $file_id) {
111  $infos[] = new BasicFileInfoResult(
113  $file_id,
114  "Name $file_id.txt",
115  rand(1000, 2000),
116  "text/plain"
117  );
118  }
119 
120  return $infos;
121  }
+ Here is the call graph for this function:

◆ getInfoResult()

ilUIDemoFileUploadHandlerGUI::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 95 of file class.ilUIDemoFileUploadHandlerGUI.php.

References getFileIdentifierParameterName().

96  {
97  return new BasicFileInfoResult(
99  $identifier,
100  "My funny Testfile $identifier.txt",
101  64,
102  ""
103  );
104  }
+ Here is the call graph for this function:

◆ getRemoveResult()

ilUIDemoFileUploadHandlerGUI::getRemoveResult ( string  $identifier)
protected

Definition at line 86 of file class.ilUIDemoFileUploadHandlerGUI.php.

References $message, and getFileIdentifierParameterName().

87  {
88  $status = HandlerResult::STATUS_OK;
89  $message = 'File Deleted';
90 
91  return new BasicHandlerResult($this->getFileIdentifierParameterName(), $status, $identifier, $message);
92  }
$message
Definition: xapiexit.php:31
+ Here is the call graph for this function:

◆ getUploadResult()

ilUIDemoFileUploadHandlerGUI::getUploadResult ( )
protected

Definition at line 76 of file class.ilUIDemoFileUploadHandlerGUI.php.

References $message, and getFileIdentifierParameterName().

77  {
78  $status = HandlerResult::STATUS_OK;
79  $identifier = md5(random_bytes(65));
80  $message = 'Everything ok';
81 
82  return new BasicHandlerResult($this->getFileIdentifierParameterName(), $status, $identifier, $message);
83  }
$message
Definition: xapiexit.php:31
+ Here is the call graph for this function:

◆ getUploadURL()

ilUIDemoFileUploadHandlerGUI::getUploadURL ( )

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

Definition at line 35 of file class.ilUIDemoFileUploadHandlerGUI.php.

References ILIAS\Repository\ctrl().

35  : string
36  {
37  return $this->ctrl->getLinkTargetByClass([ilUIPluginRouterGUI::class, self::class], self::CMD_UPLOAD);
38  }
+ Here is the call graph for this function:

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