HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php
Go to the documentation of this file.
00001 <?php
00002 
00007 class HTMLPurifier_HTMLModule_Proprietary extends HTMLPurifier_HTMLModule
00008 {
00009 
00010     public $name = 'Proprietary';
00011 
00012     public function setup($config) {
00013 
00014         $this->addElement('marquee', 'Inline', 'Flow', 'Common',
00015             array(
00016                 'direction' => 'Enum#left,right,up,down',
00017                 'behavior' => 'Enum#alternate',
00018                 'width' => 'Length',
00019                 'height' => 'Length',
00020                 'scrolldelay' => 'Number',
00021                 'scrollamount' => 'Number',
00022                 'loop' => 'Number',
00023                 'bgcolor' => 'Color',
00024                 'hspace' => 'Pixels',
00025                 'vspace' => 'Pixels',
00026             )
00027         );
00028 
00029     }
00030 
00031 }
00032 
00033 // vim: et sw=4 sts=4