mixed) $options */ public function __construct( array $options = array() ) { $this->properties['tags'] = new ArrayObject(); $this->properties['tags']['b'] = new ezcDocumentBBCodeEmphasisPlugin(); $this->properties['tags']['i'] = new ezcDocumentBBCodeEmphasisPlugin(); $this->properties['tags']['u'] = new ezcDocumentBBCodeEmphasisPlugin(); $this->properties['tags']['size'] = new ezcDocumentBBCodeNoMarkupPlugin(); $this->properties['tags']['color'] = new ezcDocumentBBCodeNoMarkupPlugin(); $this->properties['tags']['quote'] = new ezcDocumentBBCodeQuotePlugin(); $this->properties['tags']['url'] = new ezcDocumentBBCodeUrlPlugin(); $this->properties['tags']['email'] = new ezcDocumentBBCodeEmailPlugin(); $this->properties['tags']['img'] = new ezcDocumentBBCodeImagePlugin(); parent::__construct( $options ); } /** * Sets the option $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name is not defined * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name * @param mixed $value * @ignore */ public function __set( $name, $value ) { switch ( $name ) { /* case 'tokenizer': if ( !is_object( $value ) || !( $value instanceof ezcDocumentBBCodeTokenizer ) ) { throw new ezcBaseValueException( $name, $value, 'instanceof ezcDocumentBBCodeTokenizer' ); } $this->properties[$name] = $value; break; */ default: parent::__set( $name, $value ); } } } ?>