本文整理汇总了PHP中ObjectLock::deleteFromDB方法的典型用法代码示例。如果您正苦于以下问题:PHP ObjectLock::deleteFromDB方法的具体用法?PHP ObjectLock::deleteFromDB怎么用?PHP ObjectLock::deleteFromDB使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ObjectLock
的用法示例。
在下文中一共展示了ObjectLock::deleteFromDB方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ObjectLock
* @since version 9.1
*/
// here we are going to try to unlock the given object
// url should be of the form: 'http://.../.../unlockobject.php?unlock=1[&force=1]&id=xxxxxx'
// or url should be of the form 'http://.../.../unlockobject.php?requestunlock=1&id=xxxxxx'
// to send notification to locker of object
$AJAX_INCLUDE = 1;
include '../inc/includes.php';
header("Content-Type: text/html; charset=UTF-8");
Html::header_nocache();
Session::checkLoginUser();
$ret = 0;
if (isset($_GET['unlock']) && isset($_GET["id"])) {
// then we may have something to unlock
$ol = new ObjectLock();
if ($ol->getFromDB($_GET["id"]) && $ol->deleteFromDB(1)) {
if (isset($_GET['force'])) {
Log::history($ol->fields['items_id'], $ol->fields['itemtype'], array(0, '', ''), 0, Log::HISTORY_UNLOCK_ITEM);
}
$ret = 1;
}
} else {
if (isset($_GET['requestunlock']) && isset($_GET["id"])) {
// the we must ask for unlock
$ol = new ObjectLock();
if ($ol->getFromDB($_GET["id"])) {
NotificationEvent::raiseEvent('unlock', $ol);
$ret = 1;
}
} else {
if (isset($_GET['lockstatus']) && isset($_GET["id"])) {