1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
class LinkAttributes {
private static $attrsAllowed=array( 'rel', 'rev', 'charset ', 'type', 'hreflang', 'itemprop', 'media', 'title', 'accesskey', 'target' );
private function doExtractAttributes ( &$text, &$attribs ) {
global $wgRequest;
if ( $wgRequest->getText( 'action' ) == 'edit' ) {
return false;
}
/* No user input */
if ( null === $text )
return false;
/* Extract attributes, separated by | or ¦. /u is for unicode, to recognize the ¦.*/
$arr = preg_split( '/[|¦]/u', $text );
$text = array_shift( $arr );
foreach ( $arr as $a ) {
$pair = explode( '=', $a );
/* Only go ahead if we have a aaa=bbb pattern, and aaa i an allowed attribute */
if ( isset( $pair[1] ) && in_array( $pair[0], static::$attrsAllowed ) ) {
/* Add to existing attribute, or create a new */
if ( isset( $attribs[$pair[0]] ) ) {
$attribs[$pair[0]] = $attribs[$pair[0]] . ' ' . $pair[1];
} else {
$attribs[$pair[0]] = $pair[1];
}
}
}
return true;
}
public function ExternalLink ( &$url, &$text, &$link, &$attribs ) {
self::doExtractAttributes ( $text, $attribs );
return true;
}
public function InternalLink ( $skin, $target, &$text, &$customAttribs, &$query, &$options, &$ret ) {
self::doExtractAttributes ( $text, $customAttribs );
return true;
}
}
|