1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8class WikiParser_PluginParser
9{
10	private $argumentParser;
11	private $pluginRunner;
12
13	function parse($text)
14	{
15		if (! $this->argumentParser || ! $this->pluginRunner) {
16			return $text;
17		}
18	}
19
20	function setArgumentParser($parser)
21	{
22		$this->argumentParser = $parser;
23	}
24
25	function setPluginRunner($runner)
26	{
27		$this->pluginRunner = $runner;
28	}
29}
30