1<?php
2/**
3 * Bootstrap Wrapper Plugin: Show Helper Class
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
7 * @copyright  (C) 2015-2020, Giuseppe Di Terlizzi
8 */
9
10class syntax_plugin_bootswrapper_show extends syntax_plugin_bootswrapper_bootstrap
11{
12
13    public $p_type         = 'block';
14    public $pattern_start  = '<show>';
15    public $pattern_end    = '</show>';
16    public $template_start = '<div class="bs-wrap bs-wrap-show show">';
17    public $template_end   = '</div>';
18    public $tag_name       = 'show';
19
20}
21