WindowsShareLinkNode::render()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
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