src/Renderer/Rich/Plugin.php 1 location
|
@@ 24-26 (lines=3) @@
|
| 21 |
|
{ |
| 22 |
|
$header = '<dt class="kint-parent kint-locked">'; |
| 23 |
|
|
| 24 |
|
if (RichRenderer::$access_paths && $o->depth > 0 && $ap = $o->getAccessPath()) { |
| 25 |
|
$header .= '<span class="kint-access-path-trigger" title="Show access path">⇄</span>'; |
| 26 |
|
} |
| 27 |
|
|
| 28 |
|
$header .= '<span class="kint-popup-trigger" title="Open in new window">→</span><nav></nav>'; |
| 29 |
|
|
src/Renderer/RichRenderer.php 1 location
|
@@ 182-184 (lines=3) @@
|
| 179 |
|
|
| 180 |
|
$out .= '>'; |
| 181 |
|
|
| 182 |
|
if (self::$access_paths && $o->depth > 0 && $ap = $o->getAccessPath()) { |
| 183 |
|
$out .= '<span class="kint-access-path-trigger" title="Show access path">⇄</span>'; |
| 184 |
|
} |
| 185 |
|
|
| 186 |
|
if ($has_children) { |
| 187 |
|
$out .= '<span class="kint-popup-trigger" title="Open in new window">⧉</span><nav></nav>'; |