templateParser === null ) { $this->templateParser = new TemplateParser( $this->options['templateDirectory'] ); // For table of contents rendering. $this->templateParser->enableRecursivePartials( true ); } return $this->templateParser; } /** * Creates a banner notifying IP masked users (temporary accounts) * That they are editing via a temporary account. * * @return string */ private function createTempUserBannerHTML() { $isSupportedSkin = $this->getOptions()['tempUserBanner']; $isTempUser = $this->getUser()->isTemp(); if ( !$isSupportedSkin || !$isTempUser ) { return ''; } $returntoParam = SkinComponentUtils::getReturnToParam( $this->getTitle(), $this->getRequest(), $this->getAuthority() ); $tempUserBanner = new SkinComponentTempUserBanner( $returntoParam, $this->getContext(), $this->getUser(), ); return $tempUserBanner->getTemplateData()['html']; } /** * @inheritDoc * Render the associated template. The master template is assumed * to be 'skin' unless `template` has been passed in the skin options * to the constructor. */ public function generateHTML() { $this->setupTemplateContext(); $out = $this->getOutput(); $tp = $this->getTemplateParser(); $template = $this->options['template'] ?? 'skin'; $data = $this->getTemplateData(); $html = $this->createTempUserBannerHTML(); $html .= $tp->processTemplate( $template, $data ); return $html; } /** * @inheritDoc */ protected function doEditSectionLinksHTML( array $links, Language $lang ) { $template = $this->getOptions()['templateSectionLinks'] ?? null; if ( !$template ) { return parent::doEditSectionLinksHTML( $links, $lang ); } return $this->getTemplateParser()->processTemplate( $template, [ 'class' => 'mw-editsection', 'array-links' => $links ] ); } /** * @inheritDoc * @return array Data specific for a mustache template. See parent function for common data. */ public function getTemplateData() { $out = $this->getOutput(); $printSource = Html::rawElement( 'div', [ 'class' => 'printfooter', 'data-nosnippet' => '' ] + $this->getUserLanguageAttributes(), $this->printSource() ); $bodyContent = $out->getHTML() . "\n" . $printSource; $newTalksHtml = $this->getNewtalks() ?: null; $data = parent::getTemplateData() + [ // Array objects 'array-indicators' => $this->getIndicatorsData( $out->getIndicators() ), // HTML strings 'html-site-notice' => $this->getSiteNotice() ?: null, 'html-user-message' => $newTalksHtml ? Html::rawElement( 'div', [ 'class' => 'usermessage' ], $newTalksHtml ) : null, 'html-subtitle' => $this->prepareSubtitle(), 'html-body-content' => $this->wrapHTML( $out->getTitle(), $bodyContent ), 'html-categories' => $this->getCategories(), 'html-after-content' => $this->afterContentHook(), 'html-undelete-link' => $this->prepareUndeleteLink(), 'html-user-language-attributes' => $this->prepareUserLanguageAttributes(), // links 'link-mainpage' => Title::newMainPage()->getLocalURL(), ]; foreach ( $this->options['messages'] ?? [] as $message ) { $data["msg-{$message}"] = $this->msg( $message )->text(); } return $data; } }