source: tags/2.1.5/services/lock.php

Last change on this file was 377, checked in by quinn, 14 years ago

Releasing trunk as stable version 2.1.5

File size: 2.6 KB
Line 
1<?php
2/**
3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
5 * Copyright 2001-2010 Strangecode, LLC
6 *
7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
24 * lock.php
25 */
26
27// require_once dirname(__FILE__) . '/_config.inc.php';
28require_once 'codebase/lib/Lock.inc.php';
29
30$auth->requireLogin();
31$app->sslOn();
32
33if (getFormData('boomerang', false)) {
34    // We remember which page we came from so we can go back there.
35    $boom_url = mb_strpos(getFormData('boomerang'), '/') !== false ? getFormData('boomerang') : $_SERVER['HTTP_REFERER'];
36    $app->setBoomerangURL($boom_url, 'lock');
37    if (isset($_SERVER['HTTP_REFERER'])) {
38        $app->setBoomerangURL($_SERVER['HTTP_REFERER'], 'cancel-lock');
39    }
40}
41
42if (!isset($lock) || !is_a($lock, 'Lock')) {
43    $lock =& Lock::getInstance($auth);
44}
45$lock->select(getFormData('lock_id'));
46
47if (!$lock->isLocked()) {
48    $app->logMsg('Lock not found with lock_id: ' . getFormData('lock_id') . ', from referrer: ' . $_SERVER['HTTP_REFERER'], LOG_WARNING, __FILE__, __LINE__);
49    $app->dieBoomerangURL('lock');
50}
51
52// What action to take.
53if (getFormData('unlock', false)) {
54    $lock->remove();
55    $app->raiseMsg(sprintf(_("The record <em>%s</em> has been unlocked, and can now be modified."), $lock->getTitle('title')), MSG_NOTICE, __FILE__, __LINE__);
56    $app->dieBoomerangURL('lock');
57} else if (getFormData('cancel', false)) {
58    // Since the boomerang URL will go back to the locked record, and the record was not unlocked, we must delete the boomerang URL otherwise we'll come back here.
59    $app->deleteBoomerangURL('lock');
60    $app->dieBoomerangURL('cancel-lock');
61}
62
63// Titles and navigation header.
64$nav->add(sprintf(_("Locked record: <em>%s</em>"), $lock->getTitle()));
65
66// Templates.
67include 'header.ihtml';
68$lock->printErrorHTML();
69include 'footer.ihtml';
70
71?>
Note: See TracBrowser for help on using the repository browser.