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

Last change on this file since 483 was 295, checked in by quinn, 16 years ago

Updated example config file. Added admin2.inc.css and minor corrections into HTML. Module maker fixes.

File size: 979 bytes
Line 
1<?php
2if (!is_a($lock, 'Lock')) {
3    return null;
4}
5?>
6<form method="post" action="<?php echo oTxt($_SERVER['PHP_SELF']); ?>" class="sc-form">
7    <?php $app->printHiddenSession() ?>
8    <input type="hidden" name="lock_id" value="<?php echo $lock->getID(); ?>" />
9
10    <p><?php
11    printf(_("The record %s is currently being edited by %s (%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" name="unlock" value="<?php echo _("Unlock"); ?>" />
21    <?php } ?>
22
23    <input type="submit" name="cancel" value="<?php echo _("Cancel"); ?>" />
24</form>
Note: See TracBrowser for help on using the repository browser.