| // +----------------------------------------------------------------------+ // // $Id: Basic.php,v 1.6 2007/07/02 16:54:25 cweiske Exp $ // /** * @package HTML_BBCodeParser * @author Stijn de Reede */ require_once 'HTML/BBCodeParser/Filter.php'; class HTML_BBCodeParser_Filter_Basic extends HTML_BBCodeParser_Filter { /** * An array of tags parsed by the engine * * @access private * @var array */ var $_definedTags = array( 'b' => array( 'htmlopen' => 'strong', 'htmlclose' => 'strong', 'allowed' => 'all', 'attributes'=> array()), 'i' => array( 'htmlopen' => 'em', 'htmlclose' => 'em', 'allowed' => 'all', 'attributes'=> array()), 'u' => array( 'htmlopen' => 'span style="text-decoration:underline;"', 'htmlclose' => 'span', 'allowed' => 'all', 'attributes'=> array()), 's' => array( 'htmlopen' => 'del', 'htmlclose' => 'del', 'allowed' => 'all', 'attributes'=> array()), 'sub' => array( 'htmlopen' => 'sub', 'htmlclose' => 'sub', 'allowed' => 'all', 'attributes'=> array()), 'sup' => array( 'htmlopen' => 'sup', 'htmlclose' => 'sup', 'allowed' => 'all', 'attributes'=> array()) ); } ?>