Current Path : /var/www/html/clients/wiki.e-nk.ru/lib/plugins/wrap/syntax/ |
Current File : /var/www/html/clients/wiki.e-nk.ru/lib/plugins/wrap/syntax/divblock.php |
<?php /** * Alternate div syntax component for the wrap plugin * * Defines <block> ... </block> 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_divblock extends syntax_plugin_wrap_div { protected $entry_pattern = '<block.*?>(?=.*?</block>)'; protected $exit_pattern = '</block>'; }