aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-03-27 01:12:57 +0100
committerJoshyPHP <s9e.dev@gmail.com>2015-04-02 19:16:04 +0200
commit3e04e643df4ca5463450df5d94f3caca3e5596c0 (patch)
tree9c7a8810d9e38986fa96a515e6d1afdcba4a4a4e /phpBB/phpbb/textformatter
parent0f30301a0cf01c609cdcd5e4d777a47872a4dcba (diff)
downloadforums-3e04e643df4ca5463450df5d94f3caca3e5596c0.tar
forums-3e04e643df4ca5463450df5d94f3caca3e5596c0.tar.gz
forums-3e04e643df4ca5463450df5d94f3caca3e5596c0.tar.bz2
forums-3e04e643df4ca5463450df5d94f3caca3e5596c0.tar.xz
forums-3e04e643df4ca5463450df5d94f3caca3e5596c0.zip
[ticket/11768] Restored get_parser() / get_renderer()
PHPBB3-11768
Diffstat (limited to 'phpBB/phpbb/textformatter')
-rw-r--r--phpBB/phpbb/textformatter/s9e/parser.php10
-rw-r--r--phpBB/phpbb/textformatter/s9e/renderer.php10
2 files changed, 20 insertions, 0 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/parser.php b/phpBB/phpbb/textformatter/s9e/parser.php
index ab81a0ab4f..fb6ef03c1c 100644
--- a/phpBB/phpbb/textformatter/s9e/parser.php
+++ b/phpBB/phpbb/textformatter/s9e/parser.php
@@ -242,6 +242,16 @@ class parser implements \phpbb\textformatter\parser_interface
}
/**
+ * Return the instance of s9e\TextFormatter\Parser used by this object
+ *
+ * @return \s9e\TextFormatter\Parser
+ */
+ public function get_parser()
+ {
+ return $this->parser;
+ }
+
+ /**
* {@inheritdoc}
*/
public function set_var($name, $value)
diff --git a/phpBB/phpbb/textformatter/s9e/renderer.php b/phpBB/phpbb/textformatter/s9e/renderer.php
index 28498150b3..02461b3849 100644
--- a/phpBB/phpbb/textformatter/s9e/renderer.php
+++ b/phpBB/phpbb/textformatter/s9e/renderer.php
@@ -164,6 +164,16 @@ class renderer implements \phpbb\textformatter\renderer_interface
}
/**
+ * Return the instance of s9e\TextFormatter\Renderer used by this object
+ *
+ * @return \s9e\TextFormatter\Renderer
+ */
+ public function get_renderer()
+ {
+ return $this->renderer;
+ }
+
+ /**
* {@inheritdoc}
*/
public function get_viewcensors()