本文整理汇总了PHP中Monitor::can方法的典型用法代码示例。如果您正苦于以下问题:PHP Monitor::can方法的具体用法?PHP Monitor::can怎么用?PHP Monitor::can使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Monitor
的用法示例。
在下文中一共展示了Monitor::can方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Monitor
exit;
}
if (!isset($_REQUEST['glpi_tab'])) {
exit;
}
if (!isset($_POST["sort"])) {
$_POST["sort"] = "";
}
if (!isset($_POST["order"])) {
$_POST["order"] = "";
}
if (!isset($_POST["withtemplate"])) {
$_POST["withtemplate"] = "";
}
$monitor = new Monitor();
if ($_POST["id"] > 0 && $monitor->can($_POST["id"], 'r')) {
if (!empty($_POST["withtemplate"])) {
switch ($_REQUEST['glpi_tab']) {
case 4:
Infocom::showForItem($monitor, $_POST["withtemplate"]);
Contract::showAssociated($monitor, $_POST["withtemplate"]);
break;
case 5:
Document::showAssociated($monitor, $_POST["withtemplate"]);
break;
default:
Plugin::displayAction($monitor, $_REQUEST['glpi_tab'], $_POST["withtemplate"]);
}
} else {
switch ($_REQUEST['glpi_tab']) {
case -1: