<?php/** * Module adds the nofollow attribute transformation to a tags. It * is enabled by HTML.Nofollow */classHTMLPurifier_HTMLModule_NofollowextendsHTMLPurifier_HTMLModule{/** * @type string */public$name='Nofollow';/** * @param HTMLPurifier_Config $config */publicfunctionsetup($config){$a=$this->addBlankElement('a');$a->attr_transform_post[]=newHTMLPurifier_AttrTransform_Nofollow();}}// vim: et sw=4 sts=4