| // +----------------------------------------------------------------------+ // // $Id: Basic.php,v 1.6 2007/07/02 16:54:25 cweiske Exp $ // /** * @package framework * @subpackage misc * @author Stijn de Reede */ /** */ require_once 'HTML/BBCodeParser/Filter.php'; /** * @package framework * @subpackage misc */ class SSHTMLBBCodeParser_Filter_Basic extends SSHTMLBBCodeParser_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()) ); }