WindowsShareLinkNode   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
eloc 6
c 2
b 1
f 1
dl 0
loc 14
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A render() 0 3 1
A toSyntax() 0 7 1
1
<?php
2
3
namespace dokuwiki\plugin\prosemirror\parser;
4
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)
17
    {
18
        self::renderToJSON($renderer, 'other', $link, $title);
19
    }
20
}
21