Conditions | 6 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
68 | protected static function getLinkTitle($title, $default, $id) |
||
69 | { |
||
70 | if (null === $title || trim($title) == '') { |
||
71 | if (useHeading('content') && $id) { |
||
1 ignored issue
–
show
|
|||
72 | $heading = p_get_first_heading($id); |
||
1 ignored issue
–
show
|
|||
73 | if (!blank($heading)) { |
||
1 ignored issue
–
show
|
|||
74 | return hsc($heading); |
||
1 ignored issue
–
show
|
|||
75 | } |
||
76 | } |
||
77 | return hsc($default); |
||
78 | } |
||
79 | return hsc($title); |
||
80 | } |
||
82 |