source: trunk/admin/maintenance.php @ 2278

Last change on this file since 2278 was 2278, checked in by rvelices, 16 years ago
  • changes to template to accomodate nbm (solved issue when we had same template filename with different root dirs)
  • started some changes in mail templates
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: maintenance.php 2278 2008-03-13 01:43:45Z rvelices $
8// | last update   : $Date: 2008-03-13 01:43:45 +0000 (Thu, 13 Mar 2008) $
9// | last modifier : $Author: rvelices $
10// | revision      : $Revision: 2278 $
11// +-----------------------------------------------------------------------+
12// | This program is free software; you can redistribute it and/or modify  |
13// | it under the terms of the GNU General Public License as published by  |
14// | the Free Software Foundation                                          |
15// |                                                                       |
16// | This program is distributed in the hope that it will be useful, but   |
17// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
18// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
19// | General Public License for more details.                              |
20// |                                                                       |
21// | You should have received a copy of the GNU General Public License     |
22// | along with this program; if not, write to the Free Software           |
23// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
24// | USA.                                                                  |
25// +-----------------------------------------------------------------------+
26
27if (!defined('PHPWG_ROOT_PATH'))
28{
29  die ("Hacking attempt!");
30}
31
32include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
33
34// +-----------------------------------------------------------------------+
35// | Check Access and exit when user status is not ok                      |
36// +-----------------------------------------------------------------------+
37check_status(ACCESS_ADMINISTRATOR);
38
39// +-----------------------------------------------------------------------+
40// |                                actions                                |
41// +-----------------------------------------------------------------------+
42
43$action = (isset($_GET['action']) and !is_adviser()) ? $_GET['action'] : '';
44
45switch ($action)
46{
47  case 'categories' :
48  {
49    update_uppercats();
50    update_category('all');
51    ordering();
52    update_global_rank();
53    invalidate_user_cache();
54    break;
55  }
56  case 'images' :
57  {
58    update_path();
59    update_average_rate();
60    break;
61  }
62  case 'history_detail' :
63  {
64    $query = '
65DELETE
66  FROM '.HISTORY_TABLE.'
67;';
68    pwg_query($query);
69    break;
70  }
71  case 'history_summary' :
72  {
73    $query = '
74DELETE
75  FROM '.HISTORY_SUMMARY_TABLE.'
76;';
77    pwg_query($query);
78    break;
79  }
80  case 'sessions' :
81  {
82    pwg_session_gc();
83    break;
84  }
85  case 'feeds' :
86  {
87    $query = '
88DELETE
89  FROM '.USER_FEED_TABLE.'
90  WHERE last_check IS NULL
91;';
92    pwg_query($query);
93    break;
94  }
95  case 'database' :
96  {
97    do_maintenance_all_tables();
98    break;
99  }
100  case 'c13y' :
101  {
102    include_once(PHPWG_ROOT_PATH.'admin/include/check_integrity.class.php');
103    $c13y = new check_integrity();
104    $c13y->maintenance();
105    break;
106  }
107  case 'compiled-templates' :
108  {
109    $template->delete_compiled_templates();
110    break;
111  }
112  default :
113  {
114    break;
115  }
116}
117
118// +-----------------------------------------------------------------------+
119// |                             template init                             |
120// +-----------------------------------------------------------------------+
121
122$template->set_filenames(array('maintenance'=>'admin/maintenance.tpl'));
123
124$start_url = get_root_url().'admin.php?page=maintenance&amp;action=';
125
126$template->assign(
127  array(
128    'U_MAINT_CATEGORIES' => $start_url.'categories',
129    'U_MAINT_IMAGES' => $start_url.'images',
130    'U_MAINT_HISTORY_DETAIL' => $start_url.'history_detail',
131    'U_MAINT_HISTORY_SUMMARY' => $start_url.'history_summary',
132    'U_MAINT_SESSIONS' => $start_url.'sessions',
133    'U_MAINT_FEEDS' => $start_url.'feeds',
134    'U_MAINT_DATABASE' => $start_url.'database',
135    'U_MAINT_C13Y' => $start_url.'c13y',
136    'U_MAINT_COMPILED_TEMPLATES' => $start_url.'compiled-templates',
137    'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=maintenance',
138    )
139  );
140
141// +-----------------------------------------------------------------------+
142// |                           sending html code                           |
143// +-----------------------------------------------------------------------+
144
145$template->assign_var_from_handle('ADMIN_CONTENT', 'maintenance');
146?>
Note: See TracBrowser for help on using the repository browser.