-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathMenuItem.class.php
More file actions
213 lines (186 loc) · 6.23 KB
/
MenuItem.class.php
File metadata and controls
213 lines (186 loc) · 6.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
namespace wcf\data\menu\item;
use wcf\data\DatabaseObject;
use wcf\data\ITitledObject;
use wcf\data\page\Page;
use wcf\data\page\PageCache;
use wcf\system\application\ApplicationHandler;
use wcf\system\exception\ImplementationException;
use wcf\system\page\handler\ILookupPageHandler;
use wcf\system\page\handler\IMenuPageHandler;
use wcf\system\WCF;
use wcf\util\Url;
/**
* Represents a menu item.
*
* @author Marcel Werk
* @copyright 2001-2019 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @since 3.0
*
* @property-read int $itemID unique id of the menu item
* @property-read int $menuID id of the menu the menu item belongs to
* @property-read int|null $parentItemID id of the menu item's parent menu item or null if it has no parent menu item
* @property-read string $identifier textual identifier of the menu item
* @property-read string $title title of the menu item or name of language item which contains title
* @property-read int|null $pageID id of the linked `wcf\data\page\Page` object or null of no such page is linked
* @property-read int $pageObjectID id of the object required to show the page referenced by `$pageID`
* @property-read string $externalURL external link of the menu item
* @property-read int $showOrder position of the menu item in relation to its siblings
* @property-read int $isDisabled is `1` if the menu item is disabled and thus not shown in the menu, otherwise `0`
* @property-read int $originIsSystem is `1` if the menu item has been delivered by a package, otherwise `0` (if the menu item has been created by an admin in the ACP)
* @property-read int $packageID id of the package the which delivers the menu item or `1` if it has been created in the ACP
* @property-read string $urlParameters
*/
class MenuItem extends DatabaseObject implements ITitledObject
{
/**
* @var IMenuPageHandler
*/
protected $handler;
/**
* page object
* @var Page
*/
protected $page;
/**
* @inheritDoc
* @since 5.2
*/
public function getTitle(): string
{
return WCF::getLanguage()->get($this->title);
}
/**
* Returns true if the active user can delete this menu item.
*
* @return bool
*/
public function canDelete()
{
if (WCF::getSession()->getPermission('admin.content.cms.canManageMenu') && !$this->originIsSystem) {
return true;
}
return false;
}
/**
* Returns true if the active user can disable this menu item.
*
* @return bool
*/
public function canDisable()
{
if (WCF::getSession()->getPermission('admin.content.cms.canManageMenu')) {
return true;
}
return false;
}
/**
* Returns the URL of this menu item.
*
* @return string
*/
public function getURL()
{
if ($this->pageObjectID) {
$handler = $this->getMenuPageHandler();
if ($handler && $handler instanceof ILookupPageHandler) {
return $this->appendUrlParameters($handler->getLink($this->pageObjectID));
}
}
if ($this->pageID) {
return $this->appendUrlParameters($this->getPage()->getLink());
} else {
return WCF::getLanguage()->get($this->externalURL);
}
}
private function appendUrlParameters(string $url): string
{
if (!$this->urlParameters) {
return $url;
}
return Url::withQueryString($url, $this->urlParameters);
}
/**
* Returns the page that is linked by this menu item.
*
* @return Page|null
*/
public function getPage()
{
if ($this->page === null && $this->pageID) {
$this->page = PageCache::getInstance()->getPage($this->pageID);
}
return $this->page;
}
/**
* Returns false if this item should be hidden from menu.
*
* @return bool
*/
public function isVisible()
{
if ($this->isDisabled) {
return false;
}
if ($this->getPage() !== null && (!$this->getPage()->isVisible() || !$this->getPage()->isAccessible())) {
return false;
}
if ($this->getMenuPageHandler() !== null) {
$menuPageHandler = $this->getMenuPageHandler();
if ($menuPageHandler instanceof ILookupPageHandler && !$menuPageHandler->isValid($this->pageObjectID ?: null)) {
return false;
}
return $menuPageHandler->isVisible($this->pageObjectID ?: null);
}
return true;
}
/**
* Returns the number of outstanding items for this menu.
*
* @return int
*/
public function getOutstandingItems()
{
if ($this->getMenuPageHandler() !== null) {
return $this->getMenuPageHandler()->getOutstandingItemCount($this->pageObjectID ?: null);
}
return 0;
}
/**
* Returns true if this item is an external link.
*
* @return bool
*/
public function isExternalLink()
{
return $this->externalURL ? !ApplicationHandler::getInstance()->isInternalURL($this->externalURL) : false;
}
/**
* Returns the page handler for this item.
*
* @return IMenuPageHandler|null
* @throws ImplementationException
*/
protected function getMenuPageHandler()
{
$page = $this->getPage();
if ($page !== null && $page->handler) {
if ($this->handler === null) {
$className = $this->getPage()->handler;
$this->handler = new $className();
if (!($this->handler instanceof IMenuPageHandler)) {
throw new ImplementationException(\get_class($this->handler), IMenuPageHandler::class);
}
$this->handler->setMenuItem($this);
}
}
return $this->handler;
}
public function cachePageObject(): void
{
if ($this->pageObjectID && $this->getMenuPageHandler() !== null) {
$this->getMenuPageHandler()->cacheObject($this->pageObjectID);
}
}
}