source: trunk/services/templates/lock.ihtml @ 20

Last change on this file since 20 was 20, checked in by scdev, 19 years ago

Tons of little updates and bugfixes. CSS updates to templates and core css files. File upload ability to module_maker. Remade Upload interface to use setParam/getParam.

File size: 1.0 KB
Line 
1<?php
2if (!is_a($lock)) {
3    return null;
4}
5?>
6<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
7    <?php App::printHiddenSession() ?>
8    <input type="hidden" name="lock_id" value="<?php echo $lock->getID(); ?>" />
9
10    <p><?php
11    printf(_("The record <strong>%s</strong> is currently being edited by <strong>%s</strong> (%d minutes elapsed). You cannot modify the record while it is locked by another user."),
12        $lock->getTitle(),
13        $lock->getEditor(),
14        date('i', $lock->getSecondsElapsed() + 60)
15    );
16    ?></p>
17
18    <?php if ($lock->getSecondsElapsed() > $lock->timeout) { ?>
19    <p><?php printf(_("You can force unlock the record if you believe the editing session has expired. You might want to confirm with before doing this."), $lock->getEditor()) ?></p>
20    <input type="submit" class="formsubmitbutton" name="unlock" value="<?php echo _("Unlock"); ?>" />
21    <?php } ?>
22
23    <input type="submit" class="formsubmitbutton" name="cancel" value="<?php echo _("Cancel"); ?>" />
24</form>
Note: See TracBrowser for help on using the repository browser.