ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWikiExportOptionHTML.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 use ILIAS\Export\ExportHandler\I\Consumer\Context\HandlerInterface as ilExportHandlerConsumerContextInterface;
26 use ILIAS\Export\ExportHandler\I\Info\File\CollectionInterface as ilExportHandlerFileInfoCollectionInterface;
27 use ILIAS\Export\ExportHandler\I\Consumer\File\Identifier\CollectionInterface as ilExportHandlerConsumerFileIdentifierCollectionInterface;
28 use ILIAS\Export\ExportHandler\I\Consumer\File\Identifier\HandlerInterface as ilExportHandlerConsumerFileIdentifierInterface;
30 
31 class ilWikiExportOptionHTML extends ilBasicLegacyExportOption
32 {
33  protected ilLanguage $lng;
34 
35  public function init(Container $DIC): void
36  {
37  $this->lng = $DIC->language();
38  parent::init($DIC);
39  }
40 
41  public function getExportType(): string
42  {
43  return 'html';
44  }
45 
46  public function getExportOptionId(): string
47  {
48  return 'wiki_exp_option_html';
49  }
50 
51  public function getSupportedRepositoryObjectTypes(): array
52  {
53  return ['wiki'];
54  }
55 
56  public function getLabel(): string
57  {
58  $this->lng->loadLanguageModule('exp');
59  return $this->lng->txt('exp_format_dropdown-html');
60  }
61 
62  public function onExportOptionSelected(ilExportHandlerConsumerContextInterface $context): void
63  {
65  $wiki = $context->exportObject();
66  $cont_exp = new WikiHtmlExport($wiki);
67  $cont_exp->setMode(WikiHtmlExport::MODE_DEFAULT);
68  $cont_exp->buildExportFile();
69  $this->ctrl->redirectByClass(ilExportGUI::class, ilExportGUI::CMD_LIST_EXPORT_FILES);
70  }
71 }
$context
Definition: webdav.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Wiki HTML exporter class.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
global $DIC
Definition: shib_login.php:22
language()
Get interface to the i18n service.
Definition: Container.php:95
const CMD_LIST_EXPORT_FILES