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

Public Member Functions

 init (Container $DIC)
 
 getExportType ()
 
 getExportOptionId ()
 
 getSupportedRepositoryObjectTypes ()
 
 isObjectSupported (ObjectId $object_id)
 
 isPublicAccessPossible ()
 
 getLabel ()
 
 onExportOptionSelected (\ILIAS\Export\ExportHandler\I\Consumer\Context\HandlerInterface $context)
 
- Public Member Functions inherited from ILIAS\Export\ExportHandler\Consumer\ExportOption\BasicLegacyHandler
 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 Attributes

ilLanguage $lng
 
- Protected Attributes inherited from ILIAS\Export\ExportHandler\Consumer\ExportOption\BasicLegacyHandler
ilCtrl $ctrl
 
ilDataFactory $data_factory
 

Detailed Description

Definition at line 26 of file class.ilLearningModuleExportOptionXML.php.

Member Function Documentation

◆ getExportOptionId()

ilLearningModuleExportOptionXML::getExportOptionId ( )

Definition at line 41 of file class.ilLearningModuleExportOptionXML.php.

41  : string
42  {
43  return 'lm_exp_option_xml';
44  }

◆ getExportType()

ilLearningModuleExportOptionXML::getExportType ( )

Definition at line 36 of file class.ilLearningModuleExportOptionXML.php.

36  : string
37  {
38  return 'xml';
39  }

◆ getLabel()

ilLearningModuleExportOptionXML::getLabel ( )

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

References ILIAS\Repository\lng().

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

◆ getSupportedRepositoryObjectTypes()

ilLearningModuleExportOptionXML::getSupportedRepositoryObjectTypes ( )

Definition at line 46 of file class.ilLearningModuleExportOptionXML.php.

46  : array
47  {
48  return ["lm"];
49  }

◆ init()

ilLearningModuleExportOptionXML::init ( Container  $DIC)

Definition at line 30 of file class.ilLearningModuleExportOptionXML.php.

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

30  : void
31  {
32  $this->lng = $DIC->language();
33  parent::init($DIC);
34  }
language()
Get interface to the i18n service.
Definition: Container.php:95
+ Here is the call graph for this function:

◆ isObjectSupported()

ilLearningModuleExportOptionXML::isObjectSupported ( ObjectId  $object_id)

Definition at line 51 of file class.ilLearningModuleExportOptionXML.php.

References ilObjectTranslation\getInstance(), and ILIAS\Data\ObjectId\toInt().

53  : bool {
54  $ot = ilObjectTranslation::getInstance($object_id->toInt());
55  return $ot->getContentActivated();
56  }
static getInstance(int $obj_id)
+ Here is the call graph for this function:

◆ isPublicAccessPossible()

ilLearningModuleExportOptionXML::isPublicAccessPossible ( )

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

58  : bool
59  {
60  return true;
61  }

◆ onExportOptionSelected()

ilLearningModuleExportOptionXML::onExportOptionSelected ( \ILIAS\Export\ExportHandler\I\Consumer\Context\HandlerInterface  $context)

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

References ILIAS\Repository\ctrl().

69  : void
70  {
71  $this->ctrl->redirectToURL($this->ctrl->getLinkTargetByClass(ilObjContentObjectGUI::class, "showExportOptionsXML"));
72  }
+ Here is the call graph for this function:

Field Documentation

◆ $lng

ilLanguage ilLearningModuleExportOptionXML::$lng
protected

Definition at line 28 of file class.ilLearningModuleExportOptionXML.php.


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