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

Public Member Functions

 init (Container $DIC)
 
 isPublicAccessPossible ()
 
 getExportType ()
 
 getExportOptionId ()
 
 getSupportedRepositoryObjectTypes ()
 
 getLabel ()
 
 getFileSelection (ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
 
 onExportOptionSelected (ilExportHandlerConsumerContextInterface $context)
 
- Public Member Functions inherited from ILIAS\Data\Text\HTML\ExportOptionBase
 init (Container $DIC)
 
 onDeleteFiles (ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
 
 onDownloadFiles (ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
 
 onDownloadWithLink (ReferenceId $reference_id, ilExportHandlerConsumerFileIdentifierInterface $file_identifier)
 
 getFileSelection (ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
 
 getFiles (ilExportHandlerConsumerContextInterface $context)
 
- Public Member Functions inherited from ILIAS\Export\ExportHandler\Consumer\ExportOption\BasicHandler
 __construct ()
 
 isObjectSupported (ObjectId $object_id)
 
 isPublicAccessPossible ()
 

Protected Member Functions

 getSubDirs (int $object_id)
 

Protected Attributes

ilLanguage $lng
 
ilCtrl $ctrl
 
LOMServices $lom_services
 
- Protected Attributes inherited from ILIAS\Data\Text\HTML\ExportOptionBase
ilExportHTMLStakeholder $stakeholder
 
ExportFileDBRepository $repo
 
ilCtrl $ctrl
 
ilDataFactory $data_factory
 

Detailed Description

Definition at line 31 of file class.ilLearningModuleExportOptionHTML.php.

Member Function Documentation

◆ getExportOptionId()

ilLearningModuleExportOptionHTML::getExportOptionId ( )

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

55  : string
56  {
57  return "lm_exp_option_html";
58  }

◆ getExportType()

ilLearningModuleExportOptionHTML::getExportType ( )

Definition at line 50 of file class.ilLearningModuleExportOptionHTML.php.

50  : string
51  {
52  return "html";
53  }

◆ getFileSelection()

ilLearningModuleExportOptionHTML::getFileSelection ( ilExportHandlerConsumerContextInterface  $context,
ilExportHandlerConsumerFileIdentifierCollectionInterface  $file_identifiers 
)

Definition at line 193 of file class.ilLearningModuleExportOptionHTML.php.

References ILIAS\Data\Text\HTML\ExportOptionBase\getFiles().

196  : ilExportHandlerFileInfoCollectionInterface {
197  $collection_builder = $context->fileCollectionBuilder();
198  $file_identifiers_array = $file_identifiers->toStringArray();
199  foreach ($this->getFiles($context) as $file) {
200  if (in_array($file->getFileIdentifier(), $file_identifiers_array)) {
201  $collection_builder = $collection_builder->withFileInfo($file);
202  }
203  }
204  return $collection_builder->collection();
205  }
$context
Definition: webdav.php:31
getFiles(ilExportHandlerConsumerContextInterface $context)
+ Here is the call graph for this function:

◆ getLabel()

ilLearningModuleExportOptionHTML::getLabel ( )

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

References ILIAS\Repository\lng().

65  : string
66  {
67  $this->lng->loadLanguageModule('exp');
68  return $this->lng->txt("exp_format_dropdown-html");
69  }
+ Here is the call graph for this function:

◆ getSubDirs()

ilLearningModuleExportOptionHTML::getSubDirs ( int  $object_id)
protected

Definition at line 213 of file class.ilLearningModuleExportOptionHTML.php.

213  : array
214  {
215  $langs = [];
216  foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
217  $langs[] = $language->value();
218  }
219  $default_dirs = ["_html"];
220  $default_dirs = array_merge($default_dirs, ["_html_all"]);
221  return array_merge($default_dirs, array_map(function ($la) { return "_html_" . $la; }, $langs));
222  }

◆ getSupportedRepositoryObjectTypes()

ilLearningModuleExportOptionHTML::getSupportedRepositoryObjectTypes ( )

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

60  : array
61  {
62  return ["lm"];
63  }

◆ init()

ilLearningModuleExportOptionHTML::init ( Container  $DIC)

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

References ILIAS\Repository\ctrl(), ILIAS\DI\Container\ctrl(), init(), ILIAS\DI\Container\language(), ILIAS\DI\Container\learningObjectMetadata(), and ILIAS\Repository\lng().

37  : void
38  {
39  parent::init($DIC);
40  $this->lng = $DIC->language();
41  $this->ctrl = $DIC->ctrl();
42  $this->lom_services = $DIC->learningObjectMetadata();
43  }
language()
Get interface to the i18n service.
Definition: Container.php:95
ctrl()
Get the interface to the control structure.
Definition: Container.php:63
+ Here is the call graph for this function:

◆ isPublicAccessPossible()

ilLearningModuleExportOptionHTML::isPublicAccessPossible ( )

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

45  : bool
46  {
47  return true;
48  }

◆ onExportOptionSelected()

ilLearningModuleExportOptionHTML::onExportOptionSelected ( ilExportHandlerConsumerContextInterface  $context)

Definition at line 207 of file class.ilLearningModuleExportOptionHTML.php.

References ILIAS\Repository\ctrl().

209  : void {
210  $this->ctrl->redirectByClass(ilObjContentObjectGUI::class, "showExportOptionsHTML");
211  }
+ Here is the call graph for this function:

Field Documentation

◆ $ctrl

ilCtrl ilLearningModuleExportOptionHTML::$ctrl
protected

Definition at line 34 of file class.ilLearningModuleExportOptionHTML.php.

◆ $lng

ilLanguage ilLearningModuleExportOptionHTML::$lng
protected

Definition at line 33 of file class.ilLearningModuleExportOptionHTML.php.

◆ $lom_services

LOMServices ilLearningModuleExportOptionHTML::$lom_services
protected

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


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