From: Peter Frühwirt Date: Thu, 29 Dec 2016 18:58:33 +0000 (+0100) Subject: Added getter to HtmlOutputNodeProcessor to expose output type X-Git-Tag: 3.0.0_RC_3^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7fe74c3082e19820becd7365ad589e62eeffcf7a;p=GitHub%2FWoltLab%2FWCF.git Added getter to HtmlOutputNodeProcessor to expose output type --- diff --git a/wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodeProcessor.class.php b/wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodeProcessor.class.php index 35c35e06fe..dd8addef82 100644 --- a/wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodeProcessor.class.php +++ b/wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodeProcessor.class.php @@ -56,6 +56,15 @@ class HtmlOutputNodeProcessor extends AbstractHtmlNodeProcessor { $this->outputType = $outputType; } + /** + * Returns the current output type. + * + * @return string + */ + public function getOutputType() { + return $this->outputType; + } + /** * @inheritDoc */