source: trunk/services/admins.php @ 480

Last change on this file since 480 was 479, checked in by anonymous, 10 years ago

Convert tabs to spaces, and lineendings to LF in all files.

File size: 21.8 KB
RevLine 
[1]1<?php
2/**
[362]3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
[396]5 * Copyright 2001-2012 Strangecode, LLC
[441]6 *
[362]7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
[441]13 *
[362]14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
[441]18 *
[362]19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
[42]24 * admins.php
[1]25 */
26
27// require_once dirname(__FILE__) . '/_config.inc.php';
28
[457]29$app->sslOn();
[1]30$auth->requireLogin();
31
32require_once 'codebase/lib/PageNumbers.inc.php';
[136]33require_once 'codebase/lib/Cache.inc.php';
[1]34require_once 'codebase/lib/FormValidator.inc.php';
35require_once 'codebase/lib/SortOrder.inc.php';
36require_once 'codebase/lib/TemplateGlue.inc.php';
37require_once 'codebase/lib/Prefs.inc.php';
[137]38require_once 'codebase/lib/Lock.inc.php';
39require_once 'codebase/lib/Version.inc.php';
[1]40
41
[143]42/********************************************************************
43* CONFIG
44********************************************************************/
[42]45
[1]46// Titles and navigation header.
[202]47$nav->add(_("Administrators"), null);
[42]48
[1]49// The object to validate form input.
50$fv = new FormValidator();
51
[152]52// Configure the prefs object.
[153]53$tmp_prefs = new Prefs('admins');
54$tmp_prefs->setParam(array('persistent' => false));
[136]55
[152]56// Configure the cache object.
[468]57$cache =& Cache::getInstance('admins');
[405]58$cache->setParam(array('enabled' => false)); // Better leave disabled; the list gets out of sync with the db otherwise, somehow.
[152]59
[1]60// Instantiate a sorting object with the default sort and order. Add SQL for each column.
[295]61$so = new SortOrder('admin_id', 'DESC');
62$so->setColumn('admin_id', $auth->getParam('db_primary_key') . ' ASC', $auth->getParam('db_primary_key') . ' DESC');
63$so->setColumn('username', $auth->getParam('db_username_column') . ' ASC', $auth->getParam('db_username_column') . ' DESC');
64$so->setColumn('userpass', $auth->getParam('db_table') . '.userpass ASC', $auth->getParam('db_table') . '.userpass DESC');
65$so->setColumn('first_name', $auth->getParam('db_table') . '.first_name ASC', $auth->getParam('db_table') . '.first_name DESC');
66$so->setColumn('last_name', $auth->getParam('db_table') . '.last_name ASC', $auth->getParam('db_table') . '.last_name DESC');
67$so->setColumn('email', $auth->getParam('db_table') . '.email ASC', $auth->getParam('db_table') . '.email DESC');
68$so->setColumn('seconds_online', $auth->getParam('db_table') . '.seconds_online ASC', $auth->getParam('db_table') . '.seconds_online DESC');
69$so->setColumn('last_login_datetime', $auth->getParam('db_table') . '.last_login_datetime ASC', $auth->getParam('db_table') . '.last_login_datetime DESC');
70$so->setColumn('last_access_datetime', $auth->getParam('db_table') . '.last_access_datetime ASC', $auth->getParam('db_table') . '.last_access_datetime DESC');
71$so->setColumn('last_login_ip', $auth->getParam('db_table') . '.last_login_ip ASC', $auth->getParam('db_table') . '.last_login_ip DESC');
72$so->setColumn('added_by_user_id', $auth->getParam('db_table') . '.added_by_user_id ASC', $auth->getParam('db_table') . '.added_by_user_id DESC');
73$so->setColumn('modified_by_user_id', $auth->getParam('db_table') . '.modified_by_user_id ASC', $auth->getParam('db_table') . '.modified_by_user_id DESC');
74$so->setColumn('added_datetime', $auth->getParam('db_table') . '.added_datetime ASC', $auth->getParam('db_table') . '.added_datetime DESC');
75$so->setColumn('modified_datetime', $auth->getParam('db_table') . '.modified_datetime ASC', $auth->getParam('db_table') . '.modified_datetime DESC');
[1]76
77// Instantiate page numbers. Total items are set and calculation is done in the getRecordList function.
78$page = new PageNumbers();
79$page->setPerPage(getFormData('per_page'), 50);
80$page->setPageNumber(getFormData('page_number'));
81
[408]82// Query parameters to retain only locally.
83$locally_carried_queries = array(
84    'search_query',
85);
[1]86
[143]87/********************************************************************
88* MAIN
89********************************************************************/
[42]90
[1]91// We may want to use the add/edit interface from another script, so this
92// allows us to remember which page we came from so we can go back there.
[20]93if (getFormData('boomerang', false) && isset($_SERVER['HTTP_REFERER'])) {
[136]94    $app->setBoomerangURL($_SERVER['HTTP_REFERER'], 'admins');
[1]95}
96
97if (getFormData('break_list_cache', false)) {
[152]98    // Remove any stale cached list data.
99    $cache->delete('list');
[1]100}
101
102// What action to take.
103switch (getFormData('op')) {
104
105case 'add' :
106    // Initialize variables for the form template.
107    $frm =& addRecordForm();
[266]108    $nav->add(_("Add Administrator"));
[1]109    $main_template = 'admin_form.ihtml';
110    break;
111
112case 'edit' :
113    // Initialize variables for the form template.
114    $frm =& editRecordForm(getFormData('admin_id'));
[266]115    $nav->add(_("Edit Administrator"));
[1]116    $main_template = 'admin_form.ihtml';
117    break;
118
119case 'del' :
120    deleteRecord(getFormData('admin_id'));
[136]121    if ($app->validBoomerangURL('admins')) {
[1]122        // Display boomerang page.
[408]123        $app->dieBoomerangURL('admins', $locally_carried_queries);
[1]124    }
125    // Display default page.
[408]126    $app->dieURL($_SERVER['PHP_SELF'], $locally_carried_queries);
[1]127    break;
128
129case 'insert' :
130    if (getFormdata('cancel', false)) {
[136]131        if ($app->validBoomerangURL('admins')) {
[22]132            // Display boomerang page.
[408]133            $app->dieBoomerangURL('admins', $locally_carried_queries);
[22]134        }
135        // Display default page.
[408]136        $app->dieURL($_SERVER['PHP_SELF'], $locally_carried_queries);
[1]137    }
138    validateInput();
139    if ($fv->anyErrors()) {
140        $frm =& addRecordForm();
141        $frm = array_merge($frm, getFormData());
[266]142        $nav->add(_("Add Administrator"));
[1]143        $main_template = 'admin_form.ihtml';
144    } else {
145        $admin_id = insertRecord(getFormData());
146        if (getFormdata('repeat', false)) {
147            // Display function again.
[408]148            $app->dieURL($_SERVER['PHP_SELF'] . '?op=add', $locally_carried_queries);
[136]149        } else if ($app->validBoomerangURL('admins')) {
[1]150            // Display boomerang page.
[408]151            $app->dieBoomerangURL('admins', $locally_carried_queries);
[1]152        }
153        // Display default page.
[408]154        $app->dieURL($_SERVER['PHP_SELF'], $locally_carried_queries);
[1]155    }
156    break;
157
158case 'update' :
159    if (getFormdata('reset', false)) {
[136]160        $app->raiseMsg(_("Saved values have been reloaded."), MSG_NOTICE, __FILE__, __LINE__);
[408]161        $app->dieURL($_SERVER['PHP_SELF'] . '?op=edit&admin_id=' . getFormData('admin_id'), $locally_carried_queries);
[1]162    }
163    if (getFormdata('cancel', false)) {
164        // Remove lock
[295]165        $lock->select($auth->getParam('db_table'), $auth->getParam('db_primary_key'), getFormData('admin_id'));
[1]166        $lock->remove();
[136]167        if ($app->validBoomerangURL('admins')) {
[1]168            // Display boomerang page.
[408]169            $app->dieBoomerangURL('admins', $locally_carried_queries);
[1]170        }
171        // Display default page.
[408]172        $app->dieURL($_SERVER['PHP_SELF'], $locally_carried_queries);
[1]173    }
174    validateInput();
175    if ($fv->anyErrors()) {
176        $frm =& editRecordForm(getFormData('admin_id'));
177        $frm = array_merge($frm, getFormData());
[266]178        $nav->add(_("Edit Administrator"));
[1]179        $main_template = 'admin_form.ihtml';
180    } else {
181        updateRecord(getFormData());
182        if (getFormdata('repeat', false)) {
183            // Display edit function with next available ID.
[295]184            $qid = $db->query("SELECT " . $auth->getParam('db_primary_key') . " FROM " . $auth->getParam('db_table') . " WHERE " . $auth->getParam('db_primary_key') . " > '" . $db->escapeString(getFormData('admin_id')) . "' ORDER BY " . $auth->getParam('db_primary_key') . " ASC LIMIT 1");
[1]185            if (list($next_id) = mysql_fetch_row($qid)) {
[408]186                $app->dieURL($_SERVER['PHP_SELF'] . '?op=edit&admin_id=' . $next_id, $locally_carried_queries);
[1]187            } else {
[136]188                $app->raiseMsg(_("Cannot edit next, the end of the list was reached"), MSG_NOTICE, __FILE__, __LINE__);
[1]189            }
[136]190        } else if ($app->validBoomerangURL('admins')) {
[1]191            // Display boomerang page.
[408]192            $app->dieBoomerangURL('admins', $locally_carried_queries);
[1]193        }
194        // Display default page.
[408]195        $app->dieURL($_SERVER['PHP_SELF'], $locally_carried_queries);
[1]196    }
197    break;
198
199default :
200    $list =& getRecordList();
201    $main_template = 'admin_list.ihtml';
202    break;
203}
204
205/******************************************************************************
206 * TEMPLATE INITIALIZATION
207 *****************************************************************************/
208
209include 'header.ihtml';
[408]210$app->carryQuery($locally_carried_queries);
[1]211include 'codebase/services/templates/' . $main_template;
212include 'footer.ihtml';
213
[143]214/********************************************************************
215* FUNCTIONS
216********************************************************************/
[1]217
218
219function validateInput()
220{
221    global $fv, $auth;
222
223    // If the username was changed during edit, verify.
224    if (((getFormData('username') != getFormData('old_username')) && 'update' == getFormData('op'))
225    || 'insert' == getFormData('op')) {
226        if ($auth->usernameExists(getFormData('username'))) {
[141]227            $fv->addError('username', sprintf(_("The username %s already exists. Please choose another."), getFormData('username')));
[1]228        }
229    }
230
231    $fv->numericRange('admin_id', -32768, 32767, _("<strong>Admin id</strong> must be a valid number between -32768 and 32767."));
232
233    $fv->isEmpty('username', _("<strong>Username</strong> cannot be blank."));
234    $fv->stringLength('username', 0, 255, _("<strong>Username</strong> must contain less than 256 characters."));
[42]235
[1]236    $fv->isEmpty('userpass', _("<strong>Passwords</strong> cannot be blank."));
237    $fv->stringLength('userpass', 6, 36, _("<strong>Passwords</strong> must be between 6 and 36 characters long."));
[42]238
[1]239    $fv->stringLength('first_name', 0, 255, _("<strong>First name</strong> must contain less than 256 characters."));
[42]240
[1]241    $fv->stringLength('last_name', 0, 255, _("<strong>Last name</strong> must contain less than 256 characters."));
[19]242
243    $fv->isEmpty('email', _("<strong>Email</strong> cannot be blank."));
[1]244    $fv->stringLength('email', 0, 255, _("<strong>Email</strong> must contain less than 256 characters."));
245    $fv->validateEmail('email');
246}
247
248function &addRecordForm()
249{
[19]250    // Set default values for the reset of the fields.
251    $frm = array(
252        'admin_id' => '',
[72]253        'old_username' => '',
[19]254        'username' => '',
255        'userpass' => '',
256        'first_name' => '',
257        'last_name' => '',
258        'email' => '',
259        'seconds_online' => '0',
260        'last_login_datetime' => '0000-00-00 00:00:00',
261        'last_access_datetime' => '0000-00-00 00:00:00',
262        'last_login_ip' => '0.0.0.0',
263        'added_by_user_id' => '',
264        'modified_by_user_id' => '',
265        'added_datetime' => '0000-00-00 00:00:00',
266        'modified_datetime' => '0000-00-00 00:00:00',
267        'new_op' => 'insert',
268        'submit_buttons' => array(
[266]269            'submit' => _("Add Administrator"),
[19]270            'repeat' => _("Add &amp; repeat"),
271            'cancel' => _("Cancel"),
272        ),
273    );
[1]274
275    return $frm;
276}
277
278function &editRecordForm($id)
279{
[295]280    global $auth;
[22]281    global $lock;
[479]282    $app =& App::getInstance();
283    $db =& DB::getInstance();
[441]284
[295]285    $lock->select($auth->getParam('db_table'), $auth->getParam('db_primary_key'), $id);
[1]286    if ($lock->isLocked() && !$lock->isMine()) {
287        $lock->dieErrorPage();
[19]288    }
289
290    // Get the information for the form.
[136]291    $qid = $db->query("
[295]292        SELECT *,
293        " . $auth->getParam('db_primary_key') . " AS admin_id
294        FROM " . $auth->getParam('db_table') . "
295        WHERE " . $auth->getParam('db_primary_key') . " = '" . $db->escapeString($id) . "'
[19]296    ");
297    if (!$frm = mysql_fetch_assoc($qid)) {
[136]298        $app->logMsg('Could not find record with admin_id: ' . $id, LOG_WARNING, __FILE__, __LINE__);
299        $app->raiseMsg(sprintf(_("The requested record %s could not be found."), $id), MSG_ERR, __FILE__, __LINE__);
[408]300        $app->dieBoomerangURL('admins', $locally_carried_queries);
[19]301    }
[42]302
[19]303    // Lock this record.
[295]304    $lock->set($auth->getParam('db_table'), $auth->getParam('db_primary_key'), $id, $frm['username']);
[42]305
[19]306    // Set misc values for the form.
307    $frm = array_merge(array(
308        'admin_id' => '',
309        'old_username' => $frm['username'],
310        'username' => '',
311//         'userpass' => '****************',
312        'first_name' => '',
313        'last_name' => '',
314        'email' => '',
315        'seconds_online' => '0',
316        'last_login_datetime' => '0000-00-00 00:00:00',
317        'last_access_datetime' => '0000-00-00 00:00:00',
318        'last_login_ip' => '0.0.0.0',
319        'added_by_user_id' => '',
320        'modified_by_user_id' => '',
321        'added_datetime' => '0000-00-00 00:00:00',
322        'modified_datetime' => '0000-00-00 00:00:00',
323        'new_op' => 'update',
[25]324        'old_username' => $frm['username'],
[19]325        'submit_buttons' => array(
326            'submit' => _("Save changes"),
327            'repeat' => _("Save &amp; edit next"),
328            'reset' => _("Reset"),
329            'cancel' => _("Cancel"),
330        ),
331    ), $frm, array('userpass' => '****************'));
332
333    return $frm;
[1]334}
335
336function deleteRecord($id)
337{
[153]338    global $auth;
339    global $lock;
340    global $cache;
[479]341    $app =& App::getInstance();
342    $db =& DB::getInstance();
[441]343
[295]344    $lock->select($auth->getParam('db_table'), $auth->getParam('db_primary_key'), $id);
[1]345    if ($lock->isLocked() && !$lock->isMine()) {
346        $lock->dieErrorPage();
[21]347    }
348
[152]349    // Remove any stale cached list data.
350    $cache->delete('list');
[42]351
[21]352    // Get the information for this object.
[136]353    $qid = $db->query("
[432]354        SELECT " . $auth->getParam('db_username_column') . "
[458]355        FROM " . $auth->getParam('db_table') . "
[295]356        WHERE " . $auth->getParam('db_primary_key') . " = '" . $db->escapeString($id) . "'
[21]357    ");
[432]358    if (! list($name) = mysql_fetch_row($qid)) {
[136]359        $app->logMsg('Could not find record with admin_id: ' . $id, LOG_WARNING, __FILE__, __LINE__);
360        $app->raiseMsg(sprintf(_("The requested record %s could not be found."), $id), MSG_ERR, __FILE__, __LINE__);
[408]361        $app->dieBoomerangURL('admins', $locally_carried_queries);
[21]362    }
[42]363
[21]364    // Get the information for this object.
[295]365    $qid = $db->query("SELECT COUNT(*) from " . $auth->getParam('db_table') . "");
[21]366    list($num_admins) = mysql_fetch_row($qid);
[432]367    if ($num_admins <= 1) {
[21]368        // There must always be at least one admnistrator!
[136]369        $app->raiseMsg(_("You cannot delete the only administrator in the database. There must be at least one to log in and create other users."), MSG_NOTICE, __FILE__, __LINE__);
[147]370    } else if ($auth->get('user_id') == $id) {
[21]371        // Do not delete yourself!
[136]372        $app->raiseMsg(_("You cannot delete yourself."), MSG_NOTICE, __FILE__, __LINE__);
[1]373    } else {
[21]374        // Delete the record.
[295]375        $db->query("DELETE FROM " . $auth->getParam('db_table') . " WHERE " . $auth->getParam('db_primary_key') . " = '" . $db->escapeString($id) . "'");
[141]376        $app->raiseMsg(sprintf(_("The admin <em>%s</em> has been deleted."), $name), MSG_SUCCESS, __FILE__, __LINE__);
[21]377    }
[1]378
[21]379    // Unlock record.
380    $lock->remove();
[1]381}
382
383function insertRecord($frm)
384{
385    global $auth;
[153]386    global $cache;
[479]387    $app =& App::getInstance();
388    $db =& DB::getInstance();
[441]389
[152]390    // Remove any stale cached list data.
391    $cache->delete('list');
[42]392
[1]393    // Insert record data.
[136]394    $db->query("
[295]395        INSERT INTO " . $auth->getParam('db_table') . " (
396            " . $auth->getParam('db_username_column') . ",
[1]397            first_name,
398            last_name,
399            email,
[19]400            added_by_user_id,
[1]401            added_datetime
402        ) VALUES (
[136]403            '" . $db->escapeString($frm['username']) . "',
404            '" . $db->escapeString($frm['first_name']) . "',
405            '" . $db->escapeString($frm['last_name']) . "',
406            '" . $db->escapeString($frm['email']) . "',
[147]407            '" . $db->escapeString($auth->get('user_id')) . "',
[1]408            NOW()
409        )
410    ");
[136]411    $last_insert_id = mysql_insert_id($db->getDBH());
[42]412
[1]413    // Set admin password.
414    $auth->setPassword($last_insert_id, $frm['userpass']);
[42]415
[19]416    // Create version.
[159]417    $version = Version::getInstance($auth);
[295]418    $version->create($auth->getParam('db_table'), $auth->getParam('db_primary_key'), $last_insert_id, $frm['username']);
[42]419
[266]420    $app->raiseMsg(sprintf(_("The Administrator <em>%s</em> has been added."), $frm['username']), MSG_SUCCESS, __FILE__, __LINE__);
[42]421
[1]422    return $last_insert_id;
423}
424
425function updateRecord($frm)
426{
[153]427    global $auth;
428    global $lock;
429    global $cache;
[479]430    $app =& App::getInstance();
431    $db =& DB::getInstance();
[441]432
[295]433    $lock->select($auth->getParam('db_table'), $auth->getParam('db_primary_key'), $frm['admin_id']);
[1]434    if ($lock->isLocked() && !$lock->isMine()) {
435        $lock->dieErrorPage();
[21]436    }
[1]437
[152]438    // Remove any stale cached list data.
439    $cache->delete('list');
[42]440
[21]441    // If the userpass is left blank or with the filler **** characters, we don't want to update it.
442    if (!empty($frm['userpass']) && !preg_match('/[\*]{4,}/', $frm['userpass'])) {
443        // Set user password.
444        $auth->setPassword($frm['admin_id'], $frm['userpass']);
445    }
[42]446
[21]447    // Update record data.
[136]448    $db->query("
[295]449        UPDATE " . $auth->getParam('db_table') . " SET
450            " . $auth->getParam('db_username_column') . " = '" . $db->escapeString($frm['username']) . "',
[136]451            first_name = '" . $db->escapeString($frm['first_name']) . "',
452            last_name = '" . $db->escapeString($frm['last_name']) . "',
453            email = '" . $db->escapeString($frm['email']) . "',
[147]454            modified_by_user_id = '" . $db->escapeString($auth->get('user_id')) . "',
[21]455            modified_datetime = NOW()
[295]456        WHERE " . $auth->getParam('db_primary_key') . " = '" . $db->escapeString($frm['admin_id']) . "'
[21]457    ");
[1]458
[21]459    // Create version.
[159]460    $version = Version::getInstance($auth);
[295]461    $version->create($auth->getParam('db_table'), $auth->getParam('db_primary_key'), $frm['admin_id'], $frm['username']);
[21]462
[266]463    $app->raiseMsg(sprintf(_("The Administrator <em>%s</em> has been updated."), $frm['username']), MSG_SUCCESS, __FILE__, __LINE__);
[21]464
465    // Unlock record.
466    $lock->remove();
[1]467}
468
469function &getRecordList()
470{
471    global $page;
472    global $so;
[153]473    global $tmp_prefs;
474    global $cache;
[295]475    global $auth;
[479]476    $db =& DB::getInstance();
[441]477
[19]478    $where_clause = '';
[42]479
[19]480    // Build search query if available.
481    if (getFormData('search_query', false)) {
482        $qry_words = preg_split('/[^\w]/', getFormData('search_query'));
[1]483        for ($i=0; $i<sizeof($qry_words); $i++) {
[19]484            $where_clause .= (empty($where_clause) ? 'WHERE' : 'AND') . "
485                (
[295]486                    " . $auth->getParam('db_table') . "." . $auth->getParam('db_username_column') . " LIKE '%" . $db->escapeString($qry_words[$i]) . "%'
487                    OR " . $auth->getParam('db_table') . ".first_name LIKE '%" . $db->escapeString($qry_words[$i]) . "%'
488                    OR " . $auth->getParam('db_table') . ".last_name LIKE '%" . $db->escapeString($qry_words[$i]) . "%'
489                    OR " . $auth->getParam('db_table') . ".email LIKE '%" . $db->escapeString($qry_words[$i]) . "%'
[1]490                )
491            ";
492        }
493    }
[19]494
[1]495    // Count the total number of records so we can do something about the page numbers.
[136]496    $qid = $db->query("
[42]497        SELECT COUNT(*)
[295]498        FROM " . $auth->getParam('db_table') . "
[19]499        $where_clause
500    ");
[1]501    list($num_results) = mysql_fetch_row($qid);
[42]502
[1]503    // Set page numbers now we know (needed for next step).
504    $page->setTotalItems($num_results);
505    $page->calculate();
[42]506
[1]507    // Final SQL, with sort and page limiters.
508    $sql = "
[42]509        SELECT
[295]510            " . $auth->getParam('db_table') . ".*,
[441]511            " . $auth->getParam('db_table') . "." . $auth->getParam('db_primary_key') . " AS admin_id,
[295]512            a1." . $auth->getParam('db_username_column') . " AS added_admin_username,
513            a2." . $auth->getParam('db_username_column') . " AS modified_admin_username
514        FROM " . $auth->getParam('db_table') . "
515        LEFT JOIN " . $auth->getParam('db_table') . " a1 ON (" . $auth->getParam('db_table') . ".added_by_user_id = a1." . $auth->getParam('db_primary_key') . ")
516        LEFT JOIN " . $auth->getParam('db_table') . " a2 ON (" . $auth->getParam('db_table') . ".modified_by_user_id = a2." . $auth->getParam('db_primary_key') . ")
[1]517        $where_clause
518        " . $so->getSortOrderSQL() . "
519        " . $page->getLimitSQL() . "
520    ";
[42]521
[152]522    // Use a cash hash to determine if the result-set has changed.
[1]523    // A unique key for this query, with the total_items in case db records
524    // were added since the last cache. This identifies a unique set of
525    // cached data, but we must refer to the list that is cached by a more
526    // generic name. so that we can flush the cache (if records updated)
527    // without knowing the hash.
528    $cache_hash = md5($sql . '|' . $page->total_items);
[153]529    if ($tmp_prefs->get('cache_hash') != $cache_hash) {
[152]530        $cache->delete('list');
[153]531        $tmp_prefs->set('cache_hash', $cache_hash);
[1]532    }
[42]533
[152]534    // First try to return from the cache.
535    if ($cache->exists('list')) {
[266]536        $list = $cache->get('list');
537        return $list;
[152]538    }
[441]539
[152]540    // The list was not cached, so issue the real query.
541    $qid = $db->query($sql);
542    while ($row = mysql_fetch_assoc($qid)) {
543        $list[] = $row;
544    }
[42]545
[152]546    // Save this list into the cache.
547    if (isset($list) && !empty($list)) {
548        $cache->set('list', $list);
[1]549    }
550
551    return $list;
552}
553
Note: See TracBrowser for help on using the repository browser.