source: trunk/admin/languages_installed.php @ 5371

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

Feature 1535: Allow to install new languages from PEM.

File size: 3.4 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$languages->set_tabsheet($page['page']);
38
39//--------------------------------------------------perform requested actions
40if (isset($_GET['action']) and isset($_GET['language']) and !is_adviser())
41{
42  $page['errors'] = $languages->perform_action($_GET['action'], $_GET['language']);
43
44  if (empty($page['errors']))
45  {
46    redirect($base_url);
47  }
48}
49
50// +-----------------------------------------------------------------------+
51// |                     start template output                             |
52// +-----------------------------------------------------------------------+
53$default_language = get_default_language();
54
55foreach($languages->fs_languages as $language_id => $language_name)
56{
57  $template->append('languages', array(
58    'ID' => $language_id,
59    'NAME' => $language_name,
60    'U_ACTION' => $base_url.'&amp;language='.$language_id,
61    'STATE' => isset($languages->db_languages[$language_id]) ? 'active' : '',
62    'IS_DEFAULT' => $language_id == $default_language,
63    )
64  );
65}
66
67
68$missing_language_ids = array_diff(
69    array_keys($languages->db_languages),
70    array_keys($languages->fs_languages)
71  );
72
73foreach($missing_language_ids as $language_id)
74{
75  $query = '
76UPDATE '.USER_INFOS_TABLE.'
77  SET language = "'.get_default_language().'"
78  WHERE language = "'.$language_id.'"
79;';
80  pwg_query($query);
81
82  $query = "
83DELETE
84  FROM ".LANGUAGES_TABLE."
85  WHERE id= '".$language_id."'
86;";
87  pwg_query($query);
88}
89
90$template->assign_var_from_handle('ADMIN_CONTENT', 'languages');
91?>
Note: See TracBrowser for help on using the repository browser.