本文整理汇总了PHP中Bookmark::check方法的典型用法代码示例。如果您正苦于以下问题:PHP Bookmark::check方法的具体用法?PHP Bookmark::check怎么用?PHP Bookmark::check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bookmark
的用法示例。
在下文中一共展示了Bookmark::check方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Bookmark
if (!isset($_GET["itemtype"])) {
$_GET["itemtype"] = -1;
} else {
if (!is_subclass_of($_GET['itemtype'], 'CommonDBTM')) {
throw new \RuntimeException('Invalid name provided!');
}
}
if (!isset($_GET["url"])) {
$_GET["url"] = "";
}
if (!isset($_GET["action"])) {
$_GET["action"] = "";
}
$bookmark = new Bookmark();
if (isset($_POST["add"])) {
$bookmark->check(-1, CREATE, $_POST);
$bookmark->add($_POST);
} else {
if (isset($_POST["update"])) {
$bookmark->check($_POST["id"], UPDATE);
// Right to update the bookmark
$bookmark->check(-1, CREATE, $_POST);
// Right when entity change
$bookmark->update($_POST);
$_GET["action"] = "";
} else {
if ($_GET["action"] == "edit" && isset($_GET['mark_default']) && isset($_GET["id"])) {
$bookmark->check($_GET["id"], READ);
if ($_GET["mark_default"] > 0) {
$bookmark->mark_default($_GET["id"]);
} else {
示例2: Bookmark
*/
/** @file
* @brief
*/
if (!isset($_GET["type"])) {
$_GET["type"] = -1;
}
if (!isset($_GET["itemtype"])) {
$_GET["itemtype"] = -1;
}
if (!isset($_GET["url"])) {
$_GET["url"] = "";
}
$bookmark = new Bookmark();
if (isset($_POST["add"])) {
$bookmark->check(-1, 'w', $_POST);
$bookmark->add($_POST);
$_GET["action"] = "load";
// Force popup on load.
$_SESSION["glpipopup"]["name"] = "load_bookmark";
} else {
if (isset($_POST["update"])) {
$bookmark->check($_POST["id"], 'w');
// Right to update the bookmark
$bookmark->check(-1, 'w', $_POST);
// Right when entity change
$bookmark->update($_POST);
$_GET["action"] = "load";
} else {
if ($_GET["action"] == "edit" && isset($_GET['mark_default']) && isset($_GET["id"])) {
$bookmark->check($_GET["id"], 'r');