<?php
/**
 * Bootstrap Wrapper Plugin: Grid
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
 * @copyright  (C) 2015-2020, Giuseppe Di Terlizzi
 */

class syntax_plugin_bootswrapper_grid extends syntax_plugin_bootswrapper_bootstrap
{

    public $p_type         = 'block';
    public $pattern_start  = '<grid>';
    public $pattern_end    = '</grid>';
    public $template_start = '<div class="bs-wrap bs-wrap-row row">';
    public $template_end   = '</div>';
    public $tag_name       = 'grid';

}