Your IP : 172.28.240.42


Current Path : /var/www/html/clients/wiki.e-nk.ru/lib/plugins/wrap/syntax/
Upload File :
Current File : /var/www/html/clients/wiki.e-nk.ru/lib/plugins/wrap/syntax/divwrap.php

<?php
/**
 * Alternate div syntax component for the wrap plugin
 *
 * Defines  <WRAP> ... </WRAP> syntax
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Anika Henke <anika@selfthinker.org>
 */

require_once(dirname(__FILE__).'/div.php');

class syntax_plugin_wrap_divwrap extends syntax_plugin_wrap_div {

    protected $entry_pattern = '<WRAP.*?>(?=.*?</WRAP>)';
    protected $exit_pattern  = '</WRAP>';

}