~adamzammit/quexs/quexscativm

285.1.4 by Adam Zammit
Replaced short tags with long ones
1
<?php 
152 by azammitdcarf
Added no call available screen
2
/**
3
 * Display error message when no current call available
4
 *
5
 *
6
 *	This file is part of queXS
7
 *	
8
 *	queXS is free software; you can redistribute it and/or modify
9
 *	it under the terms of the GNU General Public License as published by
10
 *	the Free Software Foundation; either version 2 of the License, or
11
 *	(at your option) any later version.
12
 *	
13
 *	queXS is distributed in the hope that it will be useful,
14
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 *	GNU General Public License for more details.
17
 *	
18
 *	You should have received a copy of the GNU General Public License
19
 *	along with queXS; if not, write to the Free Software
20
 *	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
 *
22
 *
23
 * @author Adam Zammit <adam.zammit@acspri.org.au>
24
 * @copyright ACSPRI 2010
25
 * @package queXS
26
 * @subpackage user
27
 * @link http://www.acspri.org.au/ queXS was writen for ACSPRI - Australian Consortium for Social and Political Research Inc.
28
 * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
29
 * 
30
 */
31
32
/**
33
 * Configuration file
34
 */
35
include ("config.inc.php");
36
37
/**
38
 * XHTML functions
39
 */
40
include ("functions/functions.xhtml.php");
41
42
/** 
43
 * Language functions
44
 */
45
include ("lang.inc.php");
46
184 by azammitdcarf
Added support for AUTO_LOGOUT_MINUTES to all child windows of the main frame (added jQuery and childnap.js)
47
$js = false;
48
if (AUTO_LOGOUT_MINUTES !== false)
49
        $js = array("include/jquery-ui/js/jquery-1.4.2.min.js","js/childnap.js");
50
51
xhtml_head(T_("No call available"),true,array("css/table.css"),$js);
152 by azammitdcarf
Added no call available screen
52
53
?>
285.1.4 by Adam Zammit
Replaced short tags with long ones
54
<h1><?php  echo T_("Please click on:") . " " . T_("Call/Hangup") . " " .T_("to display call script"); ?></h1>
55
<?php 
152 by azammitdcarf
Added no call available screen
56
57
xhtml_foot();
58
59
60
?>