HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/ted.php
Go to the documentation of this file.
00001 <?php
00002 require_once 'library/HTMLPurifier.auto.php';
00003 $ted = <<<EOF
00004 <!--copy and paste--><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/EricMead_2009P-medium.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/EricMead-2009P.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=792&introDuration=16500&adDuration=4000&postAdDuration=2000&adKeys=talk=eric_mead_the_magic_of_the_placebo;year=2009;theme=master_storytellers;theme=the_creative_spark;theme=how_the_mind_works;theme=new_on_ted_com;theme=spectacular_performance;event=TEDMED+2009;&preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/dynamic/EricMead_2009P-medium.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/EricMead-2009P.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=792&introDuration=16500&adDuration=4000&postAdDuration=2000&adKeys=talk=eric_mead_the_magic_of_the_placebo;year=2009;theme=master_storytellers;theme=the_creative_spark;theme=how_the_mind_works;theme=new_on_ted_com;theme=spectacular_performance;event=TEDMED+2009;"></embed></object>
00005 EOF;
00006 $config = HTMLPurifier_Config::createDefault();
00007 $config->set('Output.FlashCompat', true);
00008 $config->set('HTML.SafeObject', true);
00009 $purifier = new HTMLPurifier($config);
00010 echo $purifier->purify($ted);