-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathendwork.php
More file actions
executable file
·62 lines (53 loc) · 1.74 KB
/
endwork.php
File metadata and controls
executable file
·62 lines (53 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* End work for this operator
*
* This file is part of queXC
*
* queXC is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* queXC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with queXC; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* @author Adam Zammit <adam.zammit@deakin.edu.au>
* @copyright Deakin University 2007,2008,2009
* @package queXC
* @subpackage user
* @link http://www.deakin.edu.au/dcarf/ queXC was writen for DCARF - Deakin Computer Assisted Research Facility
* @license http://opensource.org/licenses/agpl-v3.html The GNU Affero General Public License (AGPL) Version 3
*
*/
/**
* Configuration file
*/
include_once("config.inc.php");
/**
* XHTML functions
*/
include_once("functions/functions.xhtml.php");
/**
* Work functions
*/
include_once("functions/functions.work.php");
$operator_id = get_operator_id();
xhtml_head(T_("queXC"));
if ($operator_id != false)
{
//Remove all work units that will be in the way
remove_work_units($operator_id);
p(T_("Work is complete"),"h1");
}
else
p(T_("No operator"),"h1");
xhtml_foot();
?>