getOptions($options, array('', '')); //just prepend and/or append the options to the original text $newtext = htmlspecialchars($options[0]) . $buffer . htmlspecialchars($options[1]); return $newtext; } /* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */ /** * Gets the transformation name of the specific plugin * * @return string */ public static function getName() { return "PreApPend"; } }