* @author Elan Ruusamäe */ use dokuwiki\plugin\htmlok\BaseSyntaxPlugin; class syntax_plugin_htmlok_phpblock extends BaseSyntaxPlugin { protected $ptype = 'block'; protected $sort = 180; protected $tag = 'PHP'; protected $mode = 'plugin_htmlok_phpblock'; protected $class = 'phpok'; protected function renderMatch(string $match): string { return $this->phpblock($match); } }