Whoops, forgot to edit WHATSNEW
[htmlpurifier.git] / library / HTMLPurifier / Injector / DisplayLinkURI.php
blobc19b1bc27186f03342cefca4da0c3a996579d79f
1 <?php
3 /**
4 * Injector that displays the URL of an anchor instead of linking to it, in addition to showing the text of the link.
5 */
6 class HTMLPurifier_Injector_DisplayLinkURI extends HTMLPurifier_Injector
8 /**
9 * @type string
11 public $name = 'DisplayLinkURI';
13 /**
14 * @type array
16 public $needed = array('a');
18 /**
19 * @param $token
21 public function handleElement(&$token)
25 /**
26 * @param HTMLPurifier_Token $token
28 public function handleEnd(&$token)
30 if (isset($token->start->attr['href'])) {
31 $url = $token->start->attr['href'];
32 unset($token->start->attr['href']);
33 $token = array($token, new HTMLPurifier_Token_Text(" ($url)"));
34 } else {
35 // nothing to display
40 // vim: et sw=4 sts=4