source: trunk/admin/languages_installed.php @ 5367

Last change on this file since 5367 was 5357, checked in by patdenice, 14 years ago

Feature 1535: Add language manager.

File size: 3.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2009 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24if( !defined("PHPWG_ROOT_PATH") )
25{
26  die ("Hacking attempt!");
27}
28
29include_once(PHPWG_ROOT_PATH.'admin/include/languages.class.php');
30
31$template->set_filenames(array('languages' => 'languages_installed.tpl'));
32
33$base_url = get_root_url().'admin.php?page='.$page['page'];
34
35$languages = new languages();
36$languages->get_db_languages();
37
38//--------------------------------------------------perform requested actions
39if (isset($_GET['action']) and isset($_GET['language']) and !is_adviser())
40{
41  $page['errors'] = $languages->perform_action($_GET['action'], $_GET['language']);
42
43  if (empty($page['errors']))
44  {
45    redirect($base_url);
46  }
47}
48
49// +-----------------------------------------------------------------------+
50// |                     start template output                             |
51// +-----------------------------------------------------------------------+
52$default_language = get_default_language();
53
54foreach($languages->fs_languages as $language_id => $language_name)
55{
56  $template->append('languages', array(
57    'ID' => $language_id,
58    'NAME' => $language_name,
59    'U_ACTION' => $base_url.'&amp;language='.$language_id,
60    'STATE' => isset($languages->db_languages[$language_id]) ? 'active' : '',
61    'IS_DEFAULT' => $language_id == $default_language,
62    )
63  );
64}
65
66
67$missing_language_ids = array_diff(
68    array_keys($languages->db_languages),
69    array_keys($languages->fs_languages)
70  );
71
72foreach($missing_language_ids as $language_id)
73{
74  $query = '
75UPDATE '.USER_INFOS_TABLE.'
76  SET language = "'.get_default_language().'"
77  WHERE language = "'.$language_id.'"
78;';
79  pwg_query($query);
80
81  $query = "
82DELETE
83  FROM ".LANGUAGES_TABLE."
84  WHERE id= '".$language_id."'
85;";
86  pwg_query($query);
87}
88
89$template->assign_var_from_handle('ADMIN_CONTENT', 'languages');
90?>
Note: See TracBrowser for help on using the repository browser.