1<?php 2/** 3 * Inline wrap component for the Ad Hoc Wrap plugin 4 * 5 * Defines <span> ... </span> syntax 6 * More info: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span 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_spanwrap extends syntax_plugin_adhoctags_abstractinline { 13 14 protected $tag = 'wrap'; 15 protected $output_tag = 'span'; 16 protected $pluginName = 'adhocwrap'; 17 18 protected function registerTag() { return true; } 19}