mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
Wiki enhancement: edit locking (uses AJAX)
This commit is contained in:
parent
f775a510d6
commit
22e846cde2
10 changed files with 291 additions and 11 deletions
31
mod/wiki/confirmlock.php
Normal file
31
mod/wiki/confirmlock.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* This script is called through AJAX. It confirms that a user is still
|
||||
* trying to edit a page that they have locked (they haven't closed
|
||||
* their browser window or something).
|
||||
*
|
||||
* @copyright © 2006 The Open University
|
||||
* @author s.marshall@open.ac.uk
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
* @package wiki
|
||||
*//** */
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
header('Content-Type: text/plain');
|
||||
|
||||
if(empty($_POST['lockid'])) {
|
||||
print 'noid';
|
||||
exit;
|
||||
}
|
||||
|
||||
$lockid=(int)$_POST['lockid'];
|
||||
if($lock=get_record('wiki_locks','id',$lockid)) {
|
||||
$lock->lockedseen=time();
|
||||
update_record('wiki_locks',$lock);
|
||||
print 'ok';
|
||||
} else {
|
||||
print 'cancel'; // Tells user their lock has been cancelled.
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue