19 declare(strict_types=1);
28 protected \ILIAS\components\Export\HTML\ExportCollector
$collector;
37 protected \ilLanguage
$lng;
51 bool $set_export_key =
true 58 $this->collector = $DIC->export()->domain()->html()->collector($blog->getId());
59 $this->collector->init();
62 $this->export_dir = $exp_dir;
64 $this->target_dir = $exp_dir .
"/" .
$sub_dir;
66 $this->global_screen = $DIC->globalScreen();
67 $this->export_util =
new Util(
"",
"", $this->collector);
68 $this->co_page_html_export = new \ilCOPageHTMLExport($this->target_dir,
null, 0, $this->collector);
69 $this->
tabs = $DIC->tabs();
70 $this->
lng = $DIC->language();
72 $this->items = $this->blog_gui->getItems();
73 $this->keywords = $this->blog_gui->getKeywords(
false);
74 if ($set_export_key && !self::$export_key_set) {
75 self::$export_key_set =
true;
76 $this->global_screen->tool()->context()->current()->addAdditionalData(
82 $cs = $DIC->contentStyle();
84 $this->content_style_domain = $cs->domain()->styleForRefId($this->blog->getRefId());
86 $this->content_style_domain = $cs->domain()->styleForObjId($this->blog->getId());
89 protected function init(): void
99 bool $a_include_comments
101 $this->include_comments = $a_include_comments;
120 $this->export_util->exportSystemStyle();
122 $this->export_util->exportCOPageFiles(
123 $this->content_style_domain->getEffectiveStyleId(),
130 if ($this->print_version) {
139 $this->export_util->exportResourceFiles();
140 $this->co_page_html_export->exportPageElements();
147 if ($this->include_comments) {
148 $user_export = new \ILIAS\Notes\Export\UserImageExporter();
149 $user_export->exportUserImagesForRepObjId($this->target_dir, $this->blog->getId());
162 $this->blog->getType() .
"_" . $this->blog->getId() .
".zip";
174 ?
string $a_link_template =
null,
177 string $a_index_name =
"index.html" 179 if (!$a_link_template) {
180 $a_link_template =
"bl{TYPE}_{ID}.html";
183 if ($a_co_page_html_export) {
184 $this->co_page_html_export = $a_co_page_html_export;
190 $nav = $this->blog_gui->renderNavigation(
"",
"", $a_link_template);
194 foreach (array_keys($this->items) as $month) {
195 $list = $this->blog_gui->renderList($this->items[$month],
"render", $a_link_template,
false, $this->target_dir);
201 if (!$a_tpl_callback) {
204 $tpl = $a_tpl_callback();
207 $file = self::buildExportLink($a_link_template,
"list", $month, $this->keywords);
217 foreach (array_keys($this->blog_gui->getKeywords(
false)) as $keyword) {
218 $list_items = $this->blog_gui->filterItemsByKeyword($this->items, $keyword);
219 $list = $this->blog_gui->renderList($list_items,
"render", $a_link_template,
false, $this->target_dir);
225 if (!$a_tpl_callback) {
228 $tpl = $a_tpl_callback();
231 $file = self::buildExportLink($a_link_template,
"keyword", $keyword, $this->keywords);
239 foreach ($pages as $page) {
241 $blp_gui = new \ilBlogPostingGUI(0,
null, $page[
"id"]);
242 $blp_gui->setOutputMode(
"offline");
243 $blp_gui->setFullscreenLink(
"fullscreen.html");
244 $blp_gui->add_date =
true;
245 $page_content = $blp_gui->showPage();
247 $back = self::buildExportLink(
254 $file = self::buildExportLink($a_link_template,
"posting", (
string) $page[
"id"], $this->keywords);
256 if (!$a_tpl_callback) {
259 $tpl = $a_tpl_callback();
263 ? $blp_gui->getCommentsHTMLExport()
267 $nav = $this->blog_gui->renderNavigation(
277 $this->co_page_html_export->collectPageElements(
"blp:pg", $page[
"id"]);
282 if (!$a_tpl_callback) {
285 $tpl = $a_tpl_callback();
299 $print_view = $this->blog_gui->getPrintView();
300 $print_view->setOffline(
true);
301 $html = $print_view->renderPrintView();
302 file_put_contents($this->target_dir .
"/index.html", $html);
309 foreach ($pages as $page) {
331 if (!isset(self::$keyword_export_map)) {
332 self::$keyword_export_map = array_flip(array_keys($keywords));
334 $a_id = (string) (self::$keyword_export_map[$a_id] ??
"");
343 return str_replace(array(
"{TYPE}",
"{ID}"), array($a_type, $a_id), $a_template);
350 string $a_back_url =
"" 354 $this->global_screen->layout()->meta()->reset();
357 $this->global_screen->layout()->meta()->addCss($location_stylesheet);
358 $this->global_screen->layout()->meta()->addCss(
363 $tabs = $DIC->tabs();
364 $tabs->clearTargets();
365 $tabs->clearSubTabs();
367 $tabs->setBackTarget($this->
lng->txt(
"back"), $a_back_url);
369 $tpl = new \ilGlobalPageTemplate($DIC->globalScreen(), $DIC->ui(), $DIC->http());
371 $this->co_page_html_export->getPreparedMainTemplate($tpl);
373 $this->blog_gui->renderFullscreenHeader($tpl, $this->blog->getOwner(),
true);
386 string $a_right_content =
"",
387 bool $a_back =
false,
390 $file = $this->target_dir .
"/" . $a_file;
393 $ep_tpl = new \ilTemplate(
394 "tpl.export_page.html",
397 "components/ILIAS/Blog" 400 $ep_tpl->setVariable(
"PAGE_CONTENT", $a_content);
401 $ep_tpl->setVariable(
"COMMENTS",
$comments);
403 $ep_tpl->setVariable(
"LIST", $a_content);
409 if ($a_right_content) {
417 $this->collector->addString($content, $a_file);
422 public function delete():
void 424 $this->collector->delete();
429 return $this->collector->getFilePath();
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
ILIAS components Export HTML ExportCollector $collector
static getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
HTML export class for pages.
exportHTMLPages(?string $a_link_template=null, ?\Closure $a_tpl_callback=null, ?\ilCOPageHTMLExport $a_co_page_html_export=null, string $a_index_name="index.html")
Export all pages (note: this one is called from the portfolio html export!)
static bool $export_key_set
collectPageElements(string $a_type, int $a_id, string $lang="")
Collect page elements (that need to be exported separately)
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object
static buildExportLink(string $a_template, string $a_type, string $a_id, array $keywords)
Build static export link.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static array $keyword_export_map
exportHTMLPagesPrint()
Export all pages as one print version.
setRightContent(string $a_html)
Sets content of right column.
ilObjBlogGUI: ilBlogPostingGUI, ilWorkspaceAccessGUI ilObjBlogGUI: ilInfoScreenGUI, ilNoteGUI, ilCommonActionDispatcherGUI ilObjBlogGUI: ilPermissionGUI, ilObjectCopyGUI, ilRepositorySearchGUI ilObjBlogGUI: ilExportGUI, ilObjectContentStyleSettingsGUI, ilBlogExerciseGUI, ilObjNotificationSettingsGUI ilObjBlogGUI: ilObjectMetaDataGUI ilObjBlogGUI: ILIAS ilObjBlogGUI: ILIAS
__construct()
Constructor setup ILIAS global object public.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
collectAllPagesPageElements(\ilCOPageHTMLExport $co_page_html_export)
setPrintVersion(bool $print_version)
printToString()
Use this method to get the finally rendered page as string.
includeComments(bool $a_include_comments)
getInitialisedTemplate(string $a_back_url="")
Get initialised template.
static resetInitialState()
Reset initial state (for exports)
ILIAS GlobalScreen Services $global_screen
ILIAS Style Content Object ObjectFacade $content_style_domain
static zip(string $a_dir, string $a_file, bool $compress_content=false)
static getExportContentStylePath()
const HTML_EXPORT_RENDERING
writeExportFile(string $a_file, \ilGlobalPageTemplate $a_tpl, string $a_content, string $a_right_content="", bool $a_back=false, string $comments="")
Write HTML to file.
setContent(string $a_html)
Sets content for standard template.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
ilCOPageHTMLExport $co_page_html_export