Project

General

Profile

« Previous | Next » 

Revision 934

Added by doc almost 16 years ago

Added option to invoke module install.php from backend (for modules uploaded via FTP)

View differences:

trunk/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.8.0 -------------------------------------
14
17-Feb-2009 Christian Sommer
15
+	added option to invoke module install.php from backend (for modules uploaded via FTP)
16
!	admin Add-on settings no hidden by default (can be set visible via advanced link)
14 17
16-Feb-2009 Christian Sommer
15 18
!	moved reload option of Add-ons to main Add-on section
16 19
!	reworked logout to reset possible remember key in database when logging out
trunk/wb/admin/addons/index.php
49 49
if($admin->get_permission('languages') != true) {
50 50
	$template->set_var('DISPLAY_LANGUAGES', 'none');
51 51
}
52
if($admin->get_permission('admintools') != true) {
52
if(!isset($_GET['advanced']) || $admin->get_permission('admintools') != true) {
53 53
	$template->set_var('DISPLAY_RELOAD', 'none');
54 54
}
55 55

  
56 56
// Insert section names and descriptions
57 57
$template->set_var(array(
58
								'MODULES' => $MENU['MODULES'],
59
								'TEMPLATES' => $MENU['TEMPLATES'],
60
								'LANGUAGES' => $MENU['LANGUAGES'],
61
								'MODULES_OVERVIEW' => $OVERVIEW['MODULES'],
62
								'TEMPLATES_OVERVIEW' => $OVERVIEW['TEMPLATES'],
63
								'LANGUAGES_OVERVIEW' => $OVERVIEW['LANGUAGES'],
64
								'TXT_ADMIN_SETTINGS' => $TEXT['ADMIN'] . ' ' . $TEXT['SETTINGS'],
65
								'MESSAGE_RELOAD_ADDONS' => $MESSAGE['ADDON']['RELOAD'],
66
								'TEXT_RELOAD' => $TEXT['RELOAD'],
67
								'RELOAD_URL' => ADMIN_URL . '/addons/reload.php',
68
								)
69
						);
58
	'MODULES' => $MENU['MODULES'],
59
	'TEMPLATES' => $MENU['TEMPLATES'],
60
	'LANGUAGES' => $MENU['LANGUAGES'],
61
	'MODULES_OVERVIEW' => $OVERVIEW['MODULES'],
62
	'TEMPLATES_OVERVIEW' => $OVERVIEW['TEMPLATES'],
63
	'LANGUAGES_OVERVIEW' => $OVERVIEW['LANGUAGES'],
64
	'TXT_ADMIN_SETTINGS' => $TEXT['ADMIN'] . ' ' . $TEXT['SETTINGS'],
65
	'MESSAGE_RELOAD_ADDONS' => $MESSAGE['ADDON']['RELOAD'],
66
	'TEXT_RELOAD' => $TEXT['RELOAD'],
67
	'RELOAD_URL' => ADMIN_URL . '/addons/reload.php',
68
	'URL_ADVANCED' => $admin->get_permission('admintools') ? 
69
		'<a href="' . ADMIN_URL . '/addons/index.php?advanced">' . $TEXT['ADVANCED'] . '</a>' : ''
70
	)
71
);
70 72

  
71 73
// Parse template object
72 74
$template->parse('main', 'main_block', false);
trunk/wb/admin/addons/template.html
38 38
}
39 39
</style>
40 40

  
41
<div class="box">
42
	{URL_ADVANCED}
43
</div>
44

  
41 45
<table cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
42 46
<tr>
43 47
	<td align="center" valign="top">
trunk/wb/admin/modules/manual_install.php
1
<?php
2
/**
3
 * $Id:$
4
 * Website Baker Manual module installation
5
 *
6
 * This file contains the function to invoke the module install or upgrade
7
 * scripts update the Add-on information from the
8
 * database with the ones stored in the Add-on files (e.g. info.php or EN.php)
9
 *
10
 * LICENSE: GNU Lesser General Public License 3.0
11
 * 
12
 * @author		Christian Sommer
13
 * @copyright	(c) 2009
14
 * @license		http://www.gnu.org/copyleft/lesser.html
15
 * @version		0.1.0
16
 * @platform	Website Baker 2.7
17
 *
18
 * Website Baker Project <http://www.websitebaker.org/>
19
 * Copyright (C) 2004-2009, Ryan Djurovich
20
 *
21
 * Website Baker is free software; you can redistribute it and/or modify
22
 * it under the terms of the GNU General Public License as published by
23
 * the Free Software Foundation; either version 2 of the License, or
24
 * (at your option) any later version.
25
 *
26
 * Website Baker is distributed in the hope that it will be useful,
27
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29
 * GNU General Public License for more details.
30
 *
31
 * You should have received a copy of the GNU General Public License
32
 * along with Website Baker; if not, write to the Free Software
33
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
34
*/
35

  
36
/**
37
 * check if there is anything to do
38
 */
39
if (!(isset($_POST['file']) && (strpos($_POST['file'], '..') === false))) die(header('Location: index.php'));
40

  
41
/**
42
 * check if user has permissions to access this file
43
 */
44
// include WB configuration file and WB admin class
45
require_once('../../config.php');
46
require_once('../../framework/class.admin.php');
47

  
48
// check user permissions for admintools (redirect users with wrong permissions)
49
$admin = new admin('Admintools', 'admintools', false, false);
50
if ($admin->get_permission('admintools') == false) die(header('Location: ../../index.php'));
51

  
52
// check if the referer URL if available
53
$referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : 
54
	(isset($HTTP_SERVER_VARS['HTTP_REFERER']) ? $HTTP_SERVER_VARS['HTTP_REFERER'] : '');
55

  
56
// if referer is set, check if script was invoked from "admin/modules/index.php"
57
$required_url = ADMIN_URL . '/modules/index.php';
58
if ($referer != '' && (!(strpos($referer, $required_url) !== false || strpos($referer, $required_url) !== false))) 
59
	die(header('Location: ../../index.php'));
60

  
61
// include WB functions file
62
require_once(WB_PATH . '/framework/functions.php');
63

  
64
// load WB language file
65
require_once(WB_PATH . '/languages/' . LANGUAGE .'.php');
66

  
67
// create Admin object with admin header
68
$admin = new admin('Addons', '', true, false);
69
$js_back = ADMIN_URL . '/modules/index.php';
70

  
71
/**
72
 * Reload all specified Addons
73
 */
74
// check if specified module folder exists
75
$mod_path = WB_PATH . '/modules/' . basename(WB_PATH . '/' . $_POST['file']);
76
if (!file_exists($mod_path . '/install.php')) $admin->print_error($MESSAGE['GENERIC']['NOT_INSTALLED'], $js_back);
77

  
78
// include modules install.php script
79
require($mod_path . '/install.php');
80

  
81
// load module info into database and output status message
82
load_module($mod_path, false);
83
$admin->print_success($MESSAGE['GENERIC']['INSTALLED'], $js_back);
84

  
85
?>
0 86

  
trunk/wb/admin/modules/index.php
44 44
	}
45 45
}
46 46

  
47
// Insert modules which includes a install.php file to install list
48
$template->set_block('main_block', 'install_list_block', 'install_list');
49
$module_files = glob(WB_PATH . '/modules/*');
50
foreach ($module_files as $index => $path) {
51
	if (is_dir($path) && file_exists($path . '/install.php')) {
52
		$template->set_var('VALUE', basename($path));
53
		$template->set_var('NAME', basename($path));
54
		$template->parse('install_list', 'install_list_block', true);
55
	} else {
56
		unset($module_files[$index]);
57
	}
58
}
59

  
47 60
// Insert permissions values
48 61
if($admin->get_permission('modules_install') != true) {
49 62
	$template->set_var('DISPLAY_INSTALL', 'hide');
......
54 67
if($admin->get_permission('modules_view') != true) {
55 68
	$template->set_var('DISPLAY_LIST', 'hide');
56 69
}
70
// only show if at least one module folder contains a install.php file and permissions to admin section exists
71
if(count($module_files) == 0 || !isset($_GET['advanced']) || $admin->get_permission('admintools') != true) {
72
	$template->set_var('DISPLAY_MANUAL_INSTALL', 'hide');
73
}
57 74

  
58 75
// Insert language headings
59 76
$template->set_var(array(
60 77
								'HEADING_INSTALL_MODULE' => $HEADING['INSTALL_MODULE'],
61 78
								'HEADING_UNINSTALL_MODULE' => $HEADING['UNINSTALL_MODULE'],
62
								'HEADING_MODULE_DETAILS' => $HEADING['MODULE_DETAILS']
79
								'HEADING_MODULE_DETAILS' => $HEADING['MODULE_DETAILS'],
80
								'HEADING_MANUAL_MODULE_INSTALLATION' => $HEADING['MANUAL_MODULE_INSTALLATION']
63 81
								)
64 82
						);
65 83
// Insert language text and messages
......
68 86
		'<a href="' . ADMIN_URL . '/templates/index.php">' . $MENU['TEMPLATES'] . '</a>' : '',
69 87
	'URL_LANGUAGES' => $admin->get_permission('languages') ? 
70 88
		'<a href="' . ADMIN_URL . '/languages/index.php">' . $MENU['LANGUAGES'] . '</a>' : '',
89
	'URL_ADVANCED' => $admin->get_permission('admintools') ? 
90
		'<a href="' . ADMIN_URL . '/modules/index.php?advanced">' . $TEXT['ADVANCED'] . '</a>' : '',
71 91
	'TEXT_INSTALL' => $TEXT['INSTALL'],
72 92
	'TEXT_UNINSTALL' => $TEXT['UNINSTALL'],
73 93
	'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'],
74
	'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT']
94
	'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
95
	'TEXT_MANUAL_INSTALLATION' => $MESSAGE['ADDON']['MANUAL_INSTALLATION'],
96
	'TEXT_MANUAL_INSTALLATION_WARNING' => $MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'],
97
	'TEXT_RELOAD' => $TEXT['RELOAD']
75 98
	)
76 99
);
77 100

  
trunk/wb/admin/modules/template.html
1 1
<!-- BEGIN main_block -->
2 2

  
3 3
<div class="box">
4
	{URL_TEMPLATES}&nbsp;&nbsp;{URL_LANGUAGES}
4
	{URL_TEMPLATES}&nbsp;&nbsp;{URL_LANGUAGES}&nbsp;&nbsp;{URL_ADVANCED}
5 5
</div>
6 6

  
7 7
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
......
73 73
<br />
74 74
</form>
75 75

  
76
<form name="details" action="manual_install.php" method="post" class="{DISPLAY_MANUAL_INSTALL}">
77

  
78
<h2>{HEADING_MANUAL_MODULE_INSTALLATION}</h2>
79
{TEXT_MANUAL_INSTALLATION}
80
<p>{TEXT_MANUAL_INSTALLATION_2}</p>
81

  
82
<table cellpadding="2" cellspacing="0" border="0" width="100%">
83
<tr>
84
	<td>
85
		<select name="file" style="width: 97%;">
86
		<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
87
		<!-- BEGIN install_list_block -->
88
			<option value="{VALUE}">{NAME}</option>
89
		<!-- END install_list_block -->
90
		</select>
91
	</td>
92
	<td width="110">
93
		<input type="submit" name="submit" value="{TEXT_RELOAD}" style="width: 100px;" />
94
	</td>
95
</tr>
96
</table>
97
<p style="color: red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
98

  
99
<br />
100
</form>
101

  
76 102
<!-- END main_block -->
trunk/wb/languages/FI.php
121 121
$HEADING['MODIFY_GROUP'] = 'Muokkaa ryhm&auml;&auml;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Sivupohjan lataus onnistui';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Kielen lataus onnistui';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/EN.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modify Group';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/CS.php
121 121
$HEADING['MODIFY_GROUP'] = 'Zm&#283;nit skupinu';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '&Scaron;ablony byly &uacute;sp&#283;&scaron;n&#283; p&#345;ehr&aacute;ny';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Jazyky byly &uacute;sp&#283;&scaron;n&#283; p&#345;ehr&aacute;ny';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/SE.php
121 121
$HEADING['MODIFY_GROUP'] = '&Auml;ndra grupp';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Mallar laddades om';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Spr&aring;k laddades om';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/ES.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modificar Grupo';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Plantillas recargadas correctamente';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lenguajes recargados correctamente';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/FR.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modifier un groupe';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Mod&egrave;les r&eacute;install&eacute;s avec succ&egrave;s';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Langages r&eacute;install&eacute;s avec succ&egrave;s';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/ET.php
121 121
$HEADING['MODIFY_GROUP'] = 'Muuda Gruppi';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/HR.php
121 121
$HEADING['MODIFY_GROUP'] = 'Izmjeni grupu';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Uspje&scaron;no nasnimljeni predlo&scaron;ci';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Uspje&scaron;no nasnimljeni jezici';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/NL.php
121 121
$HEADING['MODIFY_GROUP'] = 'Groepsgegevens';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates succesvol herladen';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Taalbestanden succesvol herladen';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/PL.php
121 121
$HEADING['MODIFY_GROUP'] = 'Zmie&#324; grup&#281;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Szablony zosta&#322;y za&#322;adowane ponownie';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'J&#281;zyki zosta&#322;y za&#322;adowane ponownie';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/HU.php
121 121
$HEADING['MODIFY_GROUP'] = 'csoport m&oacute;dos&iacute;t&aacute;sa';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/IT.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modifica Gruppo';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates ricaricati con successo';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lingue ricaricate con successo';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/NO.php
121 121
$HEADING['MODIFY_GROUP'] = 'Endre Gruppe';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = '&Aring;pne';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Lykkes i &aring; oppdatere maler';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lykkes i &aring; oppdatere spr&aring;k';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/LV.php
121 121
$HEADING['MODIFY_GROUP'] = 'Mainit grupu';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '&scaron;abloni veiksmigi parladeti';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Valodas veiksmigi parladetas';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/CA.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modifica Grup';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/PT.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modificar Grupo';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Temas (Templates) recarregados com sucesso';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Idiomas recarregados com sucesso';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/DA.php
121 121
$HEADING['MODIFY_GROUP'] = 'Ret gruppe';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = '&Aring;ben';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates opdateret med succes';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Sprog opdateret med succes';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/TR.php
121 121
$HEADING['MODIFY_GROUP'] = 'Grup D&uuml;zenle';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Kal&yacute;plar, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekildeninkini tekrar y&uuml;klendi';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Diller, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekildeninkini tekrar y&uuml;klendi';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/RU.php
121 121
$HEADING['MODIFY_GROUP'] = '&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = '&#1054;&#1090;&#1082;&#1088;&#1099;&#1090;&#1100;';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '&#1064;&#1072;&#1073;&#1083;&#1086;&#1085;&#1099; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;&#1099; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = '&#1071;&#1079;&#1099;&#1082;&#1080; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;&#1099; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>
trunk/wb/languages/DE.php
121 121
$HEADING['MODIFY_GROUP'] = 'Gruppen &auml;ndern';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On Voraussetzungen nicht erf&uuml;llt';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Modul "install.php" manuell aufrufen';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = '&Ouml;ffnen';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Designvorlagen erfolgreich geladen';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Sprachen erfolgreich geladen';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Installation fehlgeschlagen. Dein System erf&uuml;llt nicht alle Voraussetzungen die f&uuml;r diese Erweiterung ben&ouml;tigt werden. Um diese Erweiterung nutzen zu k&ouml;nnen, m&uuml;ssen nachfolgende Updates durchgef&uuml;hrt werden.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'Beim Hochladen eines Moduls per FTP (nicht empfohlen), wird die Modulinstallationsdatei "install.php" nicht aufgerufen. Diese Module funktionieren dann meist nicht richtig. In diesem Fall kann die Installationsdatei "install.php" eines bereits installierten Moduls nachtr&auml;glich manuell gestartet werden.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warnung: Eventuell vorhandene Datenbankeintr&auml;ge eines Moduls gehen verloren. Bitte nur bei bei Problemen mit per FTP hochgeladenen Modulen verwenden. ';
595 598

  
596 599
?>
trunk/wb/languages/BG.php
121 121
$HEADING['MODIFY_GROUP'] = '&#1055;&#1088;&#1086;&#1084;&#1077;&#1085;&#1080; &#1075;&#1088;&#1091;&#1087;&#1072;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124 125

  
125 126
// Other text
126 127
$TEXT['OPEN'] = 'Open';
......
592 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
593 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
594 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
595 598

  
596 599
?>

Also available in: Unified diff