1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
You may not change or alter any portion of this comment or credits |
4
|
|
|
of supporting developers from this source code or any supporting source code |
5
|
|
|
which is considered copyrighted (c) material of the original comment or credit authors. |
6
|
|
|
|
7
|
|
|
This program is distributed in the hope that it will be useful, |
8
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
9
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Xoops\Html\Menu\Render; |
13
|
|
|
|
14
|
|
|
use Xoops\Html\Menu\Item; |
15
|
|
|
use Xoops\Html\Menu\ItemList; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* BreadCrumb - render a breadcrumb link menu |
19
|
|
|
* |
20
|
|
|
* @category Xoops\Html\Menu\Render |
21
|
|
|
* @package BreadCrumb |
22
|
|
|
* @author Richard Griffith <[email protected]> |
23
|
|
|
* @copyright 2016 XOOPS Project (http://xoops.org) |
24
|
|
|
* @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html) |
25
|
|
|
* @link http://xoops.org |
26
|
|
|
*/ |
27
|
|
|
class BreadCrumb extends RenderAbstract |
28
|
|
|
{ |
29
|
|
|
/** |
30
|
|
|
* render breadcrumb from ItemList |
31
|
|
|
* |
32
|
|
|
* @param ItemList $menu breadcrumb menu items |
33
|
|
|
* |
34
|
|
|
* @return string rendered HTML for breadcrumb menu |
35
|
|
|
*/ |
36
|
|
|
public function render(ItemList $menu) |
37
|
|
|
{ |
38
|
|
|
$renderedMenu = "<ul class=\"breadcrumb\">\n"; |
39
|
|
|
foreach ($menu['items'] as $item) { |
40
|
|
|
$renderedMenu .= $this->renderItem($item); |
41
|
|
|
} |
42
|
|
|
$renderedMenu .= "</ul>\n"; |
43
|
|
|
return $renderedMenu; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* render items, call recursively to handle ItemList, skip unsupported types |
48
|
|
|
* |
49
|
|
|
* @param Item $item Item to render |
50
|
|
|
* |
51
|
|
|
* @return string |
52
|
|
|
*/ |
53
|
|
View Code Duplication |
protected function renderItem(Item $item) |
54
|
|
|
{ |
55
|
|
|
$renderedItems = ''; |
56
|
|
|
$type = $item->get('type', 'error'); |
57
|
|
|
switch ($type) { |
58
|
|
|
case Item::TYPE_LINK: |
59
|
|
|
$anchorStart = ''; |
60
|
|
|
$anchorEnd = ''; |
61
|
|
|
$liClass = ' class="active"'; |
62
|
|
|
if ($item->has('link')) { |
63
|
|
|
$anchorStart = '<a href="' . $this->xoops->url($item->get('link')) . '">'; |
64
|
|
|
$anchorEnd = '</a>'; |
65
|
|
|
$liClass = ''; |
66
|
|
|
} |
67
|
|
|
$caption = $item->get('caption', ''); |
68
|
|
|
$icon = $item->has('icon') ? |
69
|
|
|
'<span class="' . $item->get('icon') . '" aria-hidden="true"></span> ' : ''; |
70
|
|
|
$renderedItems .= "<li{$liClass}>{$anchorStart}{$icon}{$caption}{$anchorEnd}</li>"; |
71
|
|
|
break; |
72
|
|
|
case Item::TYPE_LIST: |
73
|
|
|
foreach ($item['items'] as $listItem) { |
74
|
|
|
$renderedItems .= $this->renderItem($listItem); |
75
|
|
|
} |
76
|
|
|
break; |
77
|
|
|
default: |
78
|
|
|
break; |
79
|
|
|
} |
80
|
|
|
return $renderedItems; |
81
|
|
|
} |
82
|
|
|
} |
83
|
|
|
|