breadcrumbs.php
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
namespace Grav\Plugin;
use Grav\Common\Grav;
class Breadcrumbs
{
/**
* @var array
*/
protected $breadcrumbs;
protected $config;
/**
* @param $config
*/
public function __construct($config)
{
$this->config = $config;
}
/**
* Get all items in breadcrumbs.
*
* @return array
*/
public function get()
{
if (!$this->breadcrumbs) {
$this->build();
}
return $this->breadcrumbs;
}
/**
* Build breadcrumbs.
*
* @internal
*/
protected function build()
{
$hierarchy = array();
$grav = Grav::instance();
$current = $grav['page'];
while ($current && !$current->root()) {
$hierarchy[$current->url()] = $current;
$current = $current->parent();
}
// Page cannot be routed.
if (!$current) {
$this->breadcrumbs = array();
return;
}
if ($this->config['include_home']) {
$home = $grav['pages']->dispatch('/');
if ($home && !array_key_exists($home->url(), $hierarchy)) {
$hierarchy[] = $home;
}
}
$this->breadcrumbs = array_reverse($hierarchy);
}
}