示例#1
0
 * @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"])) {