Add the login template
[bugdar.git] / admin / global.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2004-2008 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 chdir('./../');
23
24 require_once('./includes/init.php');
25 require_once('./includes/functions.php');
26
27 // ###################################################################
28 // setup admin templates
29
30 require_once ISSO . '/Template.php';
31 // BSTemplate::$dbCacheTable = TABLE_PREFIX . 'admintemplate';
32 BSTemplate::$templatePath = 'admin/templates/%s.html';
33 BSTemplate::$globalVars = array(
34 'templates' => array(
35 'doctype' => BSTemplate::fetch('doctype')->evaluate()->getTemplate(),
36 'nav' => BSTemplate::fetch('nav')->evaluate()->getTemplate(),
37 'headinclude' => BSTemplate::fetch('headinclude')->evaluate()->getTemplate(),
38 'title' => T('Bugdar Administration')
39 )
40 );
41
42 // ###################################################################
43
44 function admin_login()
45 {
46 BSTemplate::fetch('login')->evaluate()->flush();
47 exit;
48 }
49
50 // ###################################################################
51
52 if (can_perform('canadminpanel'))
53 {
54 $session = $db->queryFirst("SELECT * FROM " . TABLE_PREFIX . "adminsession WHERE sessionid = '" . $input->inputEscape(COOKIE_PREFIX . 'adminsession') . "'");
55 if ($session AND $session['userid'] == bugdar::$userinfo['userid'] AND $session['dateline'] >= (TIMENOW - 3600))
56 {
57 // renew the cookie
58 BSFunctions::cookie(COOKIE_PREFIX . 'adminsession', $session['sessionid'], false);
59 }
60 else
61 {
62 BSFunctions::cookie(COOKIE_PREFIX . 'adminsession', false);
63 admin_login();
64 }
65 }
66 else
67 {
68 BSFunctions::cookie(COOKIE_PREFIX . 'adminsession', false);
69 admin_login();
70 }
71
72 // ###################################################################
73
74 // ###################################################################
75 /**
76 * Callback function for the Pagination->BitProcessor()
77 *
78 * @param string Base link
79 * @param bool Do not show this as a link
80 * @param integer Page number
81 * @param object Page navigator framework
82 *
83 * @return string Processed HTML
84 */
85 function AdminPageNavigatorBitCallback($baselink, $nolink, $number, $paginator)
86 {
87 if ($nolink)
88 {
89 return '<strong>' . $number . '</strong>' . "\n";
90 }
91 else
92 {
93 return '<a href="' . $baselink . 'p=' . $number . '&amp;pp=' . $paginator->getPerPage() . '">' . $number . '</a>' . "\n";
94 }
95 }
96
97 // ###################################################################
98 /**
99 * Callback function for the Pagination->NavigatorProcessor()
100 *
101 * @param string Base URL
102 * @param integer Next page number
103 * @param integer Previous page number
104 * @param array Show information
105 * @param string Individual page bits
106 * @param object Page navigator framework
107 *
108 * @return string Processed HTML
109 */
110 function AdminPageNavigatorCallback($baselink, $nextpage, $prevpage, $show, $pagebits, $paginator)
111 {
112 global $stylevar;
113
114 $return = '';
115
116 if ($show['first'])
117 {
118 $return .= '<a href="' . $baselink . 'p=1&amp;pp=' . $paginator->getPerPage() . '">' . T('First') . '</a> ...';
119 }
120 if ($show['prev'])
121 {
122 $return .= '<a href="' . $baselink . 'p=' . $prevpage . '&amp;pp=' . $paginator->getPerPage() . '">' . T('Prev') . '</a> ...';
123 }
124
125 $return .= $pagebits;
126
127 if ($show['next'])
128 {
129 $return .= '... <a href="' . $baselink . 'p=' . $nextpage . '&amp;pp=' . $paginator->getPerPage() . '">' . T('Next') . '</a>';
130 }
131 if ($show['last'])
132 {
133 $return .= '... <a href="' . $baselink . 'p=' . $paginator->getPageCount() . '&amp;pp=' . $paginator->getPerPage() . '">' . T('Last') . '</a>';
134 }
135 return '<div style="margin-top: 15px; float: ' . $stylevar['right'] . '">' . $return . '</div>';
136 }
137
138 ?>