Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
5 | class WindowsShareLinkNode extends LinkNode |
||
6 | { |
||
7 | public function toSyntax() |
||
8 | { |
||
9 | $href = $this->attrs['href']; |
||
10 | $href = substr($href, strlen('file:///')); |
||
11 | $href = str_replace('/', '\\', $href); |
||
12 | |||
13 | return $this->getDefaultLinkSyntax($href); |
||
14 | } |
||
15 | |||
16 | public static function render($renderer, $link, $title) |
||
19 | } |
||
20 | } |
||
21 |