我试图将短代码添加到WYSIWYG。我正在使用this library。我试图将其解析为accordion from bootstrap:
[panel]
[header]
Heading goes here
[/header]
[content] Content goes here [/content]
[header]
Heading goes here
[/header]
[content] Content goes here [/content]
[/panel]
我的代码如下:
use Thunder\Shortcode\HandlerContainer\HandlerContainer;
use Thunder\Shortcode\Parser\RegularParser;
use Thunder\Shortcode\Processor\Processor;
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
function processAgendaContent($content)
{
$handlers = new HandlerContainer();
$handlers->add('panel', function(ShortcodeInterface $s) {
return "<div class=\"panel panel-default\">";
});
$handlers->add('header', function(ShortcodeInterface $s) {
return '
<h4 class="panel-title">
<a href="#collapse1" target="_blank" role="button" data-toggle="collapse" aria-expanded="true" aria-controls="collapse1" class="btn-collapse">
' . $s->getContent() . '</a>
</h4>';
});
$processor = new Processor(new RegularParser(), $handlers);
echo $processor->process($content);
我现在的问题是,当我尝试解析时,它解析开始标记而不是结束标记,我想因为这个原因getContent()不起作用。知道我做错了什么吗?感谢
答案 0 :(得分:1)
我是Shortcode库的作者。要解决您的问题,请将您的panel
短代码处理程序正文更改为:
return '<div class="panel panel-default">'.$s->getContent().'</div>';
每个短代码处理程序控制从整个短代码文本返回的内容。您刚刚返回了一个简单的字符串,并未在任何地方包含其内容,这就是[panel]
封装的整个文本被丢弃的原因。
我希望这有助于更好地理解这个图书馆是如何运作的,如果你有更多问题,我会很乐意在这里回答。