1<?php 2/** 3 * Block-level wrap component for the Ad Hoc Wrap plugin 4 * 5 * Defines <div> ... </div> syntax 6 * More info: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div 7 * 8 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 9 * @author Sascha Leib <sascha.leib(at)kolmio.com> 10 */ 11 12class syntax_plugin_adhocwrap_divblock extends syntax_plugin_adhoctags_abstractblock { 13 14 protected $tag = 'block'; 15 protected $output_tag = 'div'; 16 protected $pluginName = 'adhocwrap'; 17 18 protected function registerTag() { return true;} 19}