]>
src.bluestatic.org Git - bugdar.git/blob - admin/global.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
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 [#]gpl[#] of the License.
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
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 \*=====================================================================*/
24 require_once('./includes/init.php');
25 require_once('./includes/functions.php');
27 // ###################################################################
30 $bugsys->load('printer_navigation', 'navigator', true);
31 $navigator->add_top_link(_('Home'), '../index.php');
32 $navigator->add_top_link(_('Logout'), '../login.php?do=cplogout');
34 $navigator->add_component('tab', 'options', null, _('Options'), 'index.php');
35 $navigator->add_component('tab', 'products', null, _('Products'), 'product.php');
36 $navigator->add_component('tab', 'fields', null, _('Fields'), 'field.php');
37 $navigator->add_component('tab', 'users', null, _('Users & Permissions'), 'user.php');
39 require_once('./includes/class_admin_navigation.php');
41 // ###################################################################
44 $bugsys->load('printer', 'admin', true);
45 $admin->setRealm(_('Administration'));
46 $admin->setLanguageInformation($language);
47 $admin->css_link('../framework/printer.css.php');
49 // ###################################################################
51 function admin_login()
53 global $admin, $bugsys;
55 define('ISSO_PRINTER_NO_NAVIGATION', 1);
57 $admin->page_start(_('Login'), null, '', 'document.cplogin.' . ($bugsys->userinfo
['email'] ? 'password' : 'email') . '.focus();');
59 $admin->form_start('../login.php', 'cplogin', false, 'cplogin');
60 $admin->table_start(true, '425');
61 $admin->table_head(_('Login to Bugdar'));
62 $admin->row_input(_('Email'), 'email', $bugsys->userinfo
['email'], 2, 35, false, false, 'middle');
63 $admin->row_input(_('Password'), 'password', '', 2, 35, false, true, 'middle');
64 $admin->row_submit('', _('Login'));
71 // ###################################################################
73 $bugsys->userinfo
['adminsession'] = false;
75 if ($_COOKIE[COOKIE_PREFIX
. 'adminsession'])
77 if (can_perform('canadminpanel'))
79 if (md5(md5($bugsys->userinfo
['authkey']) . md5(gmdate('F j, Y @ H'))) != $_COOKIE[COOKIE_PREFIX
. 'adminsession'])
81 $funct->cookie(COOKIE_PREFIX
. 'adminsession', '');
83 // do we need this message?
84 $admin->error(_('Invalid admin session has been terminated.'));
89 $funct->cookie(COOKIE_PREFIX
. 'adminsession', md5(md5($bugsys->userinfo
['authkey']) . md5(gmdate('F j, Y @ H'))), false);
90 $bugsys->userinfo
['adminsession'] = true;
95 $funct->cookie(COOKIE_PREFIX
. 'adminsession', '');
100 if (!$_COOKIE[COOKIE_PREFIX
. 'adminsession'])
105 // ###################################################################
107 // ###################################################################
109 * Callback function for the Pagination->BitProcessor()
111 * @param string Base link
112 * @param bool Do not show this as a link
113 * @param integer Page number
114 * @param object Page navigator framework
116 * @return string Processed HTML
118 function AdminPageNavigatorBitCallback($baselink, $nolink, $number, $paginator)
122 return '<strong>' . $number . '</strong>' . "\n";
126 return '<a href="' . $baselink . 'p=' . $number . '&pp=' . $paginator->getPerPage() . '">' . $number . '</a>' . "\n";
130 // ###################################################################
132 * Callback function for the Pagination->NavigatorProcessor()
134 * @param string Base URL
135 * @param integer Next page number
136 * @param integer Previous page number
137 * @param array Show information
138 * @param string Individual page bits
139 * @param object Page navigator framework
141 * @return string Processed HTML
143 function AdminPageNavigatorCallback($baselink, $nextpage, $prevpage, $show, $pagebits, $paginator)
151 $return .= '<a href="' . $baselink . 'p=1&pp=' . $paginator->getPerPage() . '">' . _('First') . '</a> ...';
155 $return .= '<a href="' . $baselink . 'p=' . $prevpage . '&pp=' . $paginator->getPerPage() . '">' . _('Prev') . '</a> ...';
158 $return .= $pagebits;
162 $return .= '... <a href="' . $baselink . 'p=' . $nextpage . '&pp=' . $paginator->getPerPage() . '">' . _('Next') . '</a>';
166 $return .= '... <a href="' . $baselink . 'p=' . $paginator->getPageCount() . '&pp=' . $paginator->getPerPage() . '">' . _('Last') . '</a>';
168 return '<div style="margin-top: 15px; float: ' . $stylevar['right'] . '">' . $return . '</div>';
171 /*=====================================================================*\
172 || ###################################################################
175 || ###################################################################
176 \*=====================================================================*/