WindowsShareLinkNode::toSyntax()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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