/** * Adds a simple (text-replacement only) bbcode definition * * @param string $tagName the tag name of the code (for example the b in [b]) * @param string $replace the html to use, with {param} and optionally {option} for replacements * @param boolean $useOption whether or not this bbcode uses the secondary {option} replacement * @param boolean $parseContent whether or not to parse the content within these elements * @param integer $nestLimit an optional limit of the number of elements of this kind that can be nested within * each other before the parser stops parsing them. */ public function addBBCode($tagName, $replace, $useOption = false, $parseContent = true, $nestLimit = -1) { $code = new CodeDefinition(); $code->setTagName($tagName); $code->setUseOption($useOption); $code->setParseContent($parseContent); $code->setNestLimit($nestLimit); $code->setReplacementText($replace); array_push($this->bbcodes, $code); }