Project

General

Profile

« Previous | Next » 

Revision 1529

Added by Dietmar over 12 years ago

add new backend theme handling (Tks to Stefek)

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
=========================== add small Features 2.8.2 ==========================
14

  
14
25 Nov-2011 Build 1529 Dietmar Woellbrink (Luisehahne)
15
+ add new backend theme handling (Tks to Stefek)
15 16
----------------------------------- Fixes 2.8.2 --------------------------------
16 17
23 Nov-2011 Build 1528 Dietmar Woellbrink (Luisehahne)
17 18
! rework login and show_menu in templates allcss and round 
branches/2.8.x/wb/upgrade-script.php
64 64
			'[ADMIN]/preferences/email.php',
65 65
			'[ADMIN]/preferences/password.php',
66 66

  
67
			'[TEMPLATE]/argos_theme/templates/access.htt',
68
			'[TEMPLATE]/argos_theme/templates/addons.htt',
69
			'[TEMPLATE]/argos_theme/templates/admintools.htt',
70
			'[TEMPLATE]/argos_theme/templates/error.htt',
71
			'[TEMPLATE]/argos_theme/templates/groups.htt',
72
			'[TEMPLATE]/argos_theme/templates/groups_form.htt',
73
			'[TEMPLATE]/argos_theme/templates/languages.htt',
74
			'[TEMPLATE]/argos_theme/templates/languages_details.htt',
75
			'[TEMPLATE]/argos_theme/templates/login.htt',
76
			'[TEMPLATE]/argos_theme/templates/login_forgot.htt',
77
			'[TEMPLATE]/argos_theme/templates/media.htt',
78
			'[TEMPLATE]/argos_theme/templates/media_browse.htt',
79
			'[TEMPLATE]/argos_theme/templates/media_rename.htt',
80
			'[TEMPLATE]/argos_theme/templates/modules.htt',
81
			'[TEMPLATE]/argos_theme/templates/modules_details.htt',
82
			'[TEMPLATE]/argos_theme/templates/pages.htt',
83
			'[TEMPLATE]/argos_theme/templates/pages_modify.htt',
84
			'[TEMPLATE]/argos_theme/templates/pages_sections.htt',
85
			'[TEMPLATE]/argos_theme/templates/pages_settings.htt',
86
			'[TEMPLATE]/argos_theme/templates/preferences.htt',
87
			'[TEMPLATE]/argos_theme/templates/setparameter.htt',
88
			'[TEMPLATE]/argos_theme/templates/settings.htt',
89
			'[TEMPLATE]/argos_theme/templates/start.htt',
90
			'[TEMPLATE]/argos_theme/templates/success.htt',
91
			'[TEMPLATE]/argos_theme/templates/templates.htt',
92
			'[TEMPLATE]/argos_theme/templates/templates_details.htt',
93
			'[TEMPLATE]/argos_theme/templates/users.htt',
94
			'[TEMPLATE]/argos_theme/templates/users_form.htt',
95

  
96
			'[TEMPLATE]/wb_theme/templates/access.htt',
97
			'[TEMPLATE]/wb_theme/templates/addons.htt',
98
			'[TEMPLATE]/wb_theme/templates/admintools.htt',
99
			'[TEMPLATE]/wb_theme/templates/error.htt',
100
			'[TEMPLATE]/wb_theme/templates/groups.htt',
101
			'[TEMPLATE]/wb_theme/templates/groups_form.htt',
102
			'[TEMPLATE]/wb_theme/templates/languages.htt',
103
			'[TEMPLATE]/wb_theme/templates/languages_details.htt',
104
			'[TEMPLATE]/wb_theme/templates/login.htt',
105
			'[TEMPLATE]/wb_theme/templates/login_forgot.htt',
106
			'[TEMPLATE]/wb_theme/templates/media.htt',
107
			'[TEMPLATE]/wb_theme/templates/media_browse.htt',
108
			'[TEMPLATE]/wb_theme/templates/media_rename.htt',
109
			'[TEMPLATE]/wb_theme/templates/modules.htt',
110
			'[TEMPLATE]/wb_theme/templates/modules_details.htt',
111
			'[TEMPLATE]/wb_theme/templates/pages.htt',
112
			'[TEMPLATE]/wb_theme/templates/pages_modify.htt',
113
			'[TEMPLATE]/wb_theme/templates/pages_sections.htt',
114
			'[TEMPLATE]/wb_theme/templates/pages_settings.htt',
115
			'[TEMPLATE]/wb_theme/templates/preferences.htt',
116
			'[TEMPLATE]/wb_theme/templates/setparameter.htt',
117
			'[TEMPLATE]/wb_theme/templates/settings.htt',
118
			'[TEMPLATE]/wb_theme/templates/start.htt',
119
			'[TEMPLATE]/wb_theme/templates/success.htt',
120
			'[TEMPLATE]/wb_theme/templates/templates.htt',
121
			'[TEMPLATE]/wb_theme/templates/templates_details.htt',
122
			'[TEMPLATE]/wb_theme/templates/users.htt',
123
			'[TEMPLATE]/wb_theme/templates/users_form.htt',
124

  
67 125
		 );
68 126

  
69 127

  
......
200 258
<h1>WebsiteBaker Upgrade</h1>
201 259
<?php
202 260
	if( version_compare( WB_VERSION, '2.7', '<' )) {
203
		status_msg('<strong>Warning:</strong><br />It is not possible to upgrade from WebsiteBaker Versions before 2.7.0.<br />For upgrading to version '.VERSION.' you must upgrade first to v.2.7 at least!!!', 'warning', 'div');
261
		status_msg('<strong>Warning:</strong><br />It is not possible to upgrade from WebsiteBaker Versions before 2.7.<br />For upgrading to version '.VERSION.' you must upgrade first to v.2.7 at least!!!', 'warning', 'div');
204 262
		echo '<br /><br />';
205 263
		echo "</div>
206 264
		</body>
branches/2.8.x/wb/media/index.php
1 1
<?php
2

  
3
// $Id$
4

  
5
/*
6

  
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, Ryan Djurovich
9

  
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

  
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

  
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

  
24
*/
25

  
26
header('Location: ../index.php');
2
// *** This file is generated by WebsiteBaker Ver.2.8.2
3
// *** Creation date: 2011-11-09T20:06:57+00:00
4
// *** Do not modify this file manually
5
// *** WB will rebuild this file from time to time!!
6
// *************************************************
7
	header('HTTP/1.1 301 Moved Permanently');
8
	header('Location: http://wb282.wdsnet/2.8.x/wb/index.php');
9
// *************************************************
branches/2.8.x/wb/admin/groups/get_permissions.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         groups
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
branches/2.8.x/wb/admin/groups/groups.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         groups
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
......
46 45
			// Get existing values
47 46
			$results = $database->query("SELECT * FROM ".TABLE_PREFIX."groups WHERE group_id = '".$group_id."'");
48 47
			$group = $results->fetchRow();
49
			// Setup template object
50
			$template = new Template(THEME_PATH.'/templates');
48
			// Setup template object, parse vars to it, then parse it
49
			$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('groups_form.htt'));
50
			// Create new template object
51
			$template = new Template($ThemePath);
52
			// $template->debug = true;
51 53
			$template->set_file('page', 'groups_form.htt');
52 54
			$template->set_block('page', 'main_block', 'main');
53 55
			$template->set_var(	array(
branches/2.8.x/wb/admin/groups/index.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         groups
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
......
22 21
$admin = new admin('Access', 'groups');
23 22
$ftan = $admin->getFTAN();
24 23

  
25
// Create new template object for the modify/remove menu
26
$template = new Template(THEME_PATH.'/templates');
24
// Setup template object, parse vars to it, then parse it
25
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('groups.htt'));
26
// Create new template object
27
$template = new Template($ThemePath);
28
// $template->debug = true;
27 29
$template->set_file('page', 'groups.htt');
28 30
$template->set_block('page', 'main_block', 'main');
29 31
$template->set_block('main_block', 'manage_users_block', 'users');
......
93 95
$template->parse('main', 'main_block', false);
94 96
$template->pparse('output', 'page');
95 97

  
96
// Setup template for add group form
97
$template = new Template(THEME_PATH.'/templates');
98
// Setup template object, parse vars to it, then parse it
99
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('groups_form.htt'));
100
// Create new template object
101
$template = new Template($ThemePath);
102
// $template->debug = true;
98 103
$template->set_file('page', 'groups_form.htt');
99 104
$template->set_block('page', 'main_block', 'main');
100 105
$template->set_var('DISPLAY_EXTRA', 'display:none;');
branches/2.8.x/wb/admin/media/setparameter.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         media
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
......
75 74
// Read data to display
76 75
$caller = "setparameter";
77 76

  
78
$template = new Template(THEME_PATH.'/templates');
77
// Setup template object, parse vars to it, then parse it
78
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('setparameter.htt'));
79
// Create new template object
80
$template = new Template($ThemePath);
79 81
$template->set_file('page', 'setparameter.htt');
80 82
$template->set_block('page', 'main_block', 'main');
81 83
if ($_SESSION['GROUP_ID'] != 1) {
branches/2.8.x/wb/admin/media/browse.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         media
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
......
82 81
   return round($size/pow(1024, ($i = floor(log($size, 1024)))), 1) . $filesizename[$i];
83 82
}
84 83

  
85
// Setup template object
86
$template = new Template(THEME_PATH.'/templates');
84
// Setup template object, parse vars to it, then parse it
85
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('media_browse.htt'));
86
// Create new template object
87
$template = new Template($ThemePath);
87 88
$template->set_file('page', 'media_browse.htt');
88 89
$template->set_block('page', 'main_block', 'main');
89 90

  
branches/2.8.x/wb/admin/media/parameters.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         media
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
branches/2.8.x/wb/admin/media/index.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         admintools
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
......
25 24
$starttime = $starttime[0]+$starttime[1];
26 25
include ('parameters.php');
27 26

  
28
// Setup template object
29
$template = new Template(THEME_PATH.'/templates');
27
// Setup template object, parse vars to it, then parse it
28
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('media.htt'));
29
// Create new template object
30
$template = new Template($ThemePath);
30 31
$template->set_file('page', 'media.htt');
31 32
$template->set_block('page', 'main_block', 'main');
32 33

  
branches/2.8.x/wb/admin/media/rename.php
3 3
 *
4 4
 * @category        admin
5 5
 * @package         media
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
6
 * @author          Ryan Djurovich, WebsiteBaker Project
8 7
 * @copyright       2009-2011, Website Baker Org. e.V.
9 8
 * @link			http://www.websitebaker2.org/
10 9
 * @license         http://www.gnu.org/licenses/gpl.html
......
95 94
	$admin->print_error($MESSAGE['MEDIA']['FILE_NOT_FOUND'], $dirlink, false);
96 95
}
97 96

  
98
// Setup template object
99
$template = new Template(THEME_PATH.'/templates');
97
// Setup template object, parse vars to it, then parse it
98
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('media_rename.htt'));
99
// Create new template object
100
$template = new Template($ThemePath);
100 101
$template->set_file('page', 'media_rename.htt');
101 102
$template->set_block('page', 'main_block', 'main');
102 103
//echo WB_PATH.'/media/'.$directory.'/'.$rename_file;
branches/2.8.x/wb/admin/themes/templates/login_forgot.htt
1
<!-- BEGIN main_block -->
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
<head>
5
<title>Retrieve Login Details</title>
6
<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
7
<meta http-equiv="content-language" content="{LANGUAGE}" />
8
<meta name="description" content="Retrieve Login Details" />
9
<meta name="keywords" content="Retrieve Login Details" />
10
<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
11
</head>
12
<body onload="document.forgot_pass.email.focus();">
13

  
14
<div style="text-align:left;font-size:20px;color:#fff;padding:15px 0 0 50px;height:100px;">
15
	<!-- <img src="{THEME_URL}/images/logo.png" alt="Logo" /> -->
16
	{SECTION_FORGOT}
17
</div> 
18

  
19
<table summary="" cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;">
20
<tr>
21
	<td class="content">
22
	
23
	<form name="forgot_pass" action="{ACTION_URL}" method="post">
24
	<input type="hidden" name="url" value="{URL}" />
25
		<table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="500">
26
		<tr>
27
			<td height="40" align="center" style="color: #{MESSAGE_COLOR};" colspan="2">{MESSAGE}</td>
28
		</tr>
29
		<tr style="{DISPLAY_FORM}">
30
			<td height="10" colspan="2"></td>
31
		</tr>
32
		<tr style="{DISPLAY_FORM}">
33
			<td width="165" height="30" align="right">{TEXT_EMAIL}:</td>
34
			<td><input type="text" maxlength="255" name="email" value="{EMAIL}" style="width: 180px;" /></td>
35
		</tr>
36
		<tr style="{DISPLAY_FORM}" height="30">
37
			<td>&nbsp;</td>
38
			<td><input type="submit" name="submit" value="{TEXT_SEND_DETAILS}" style="width: 180px; font-size: 10px; text-transform: uppercase; color: #003366; border: 1px solid #336699; background-color: #DDDDDD; padding: 3px;"></td>
39
		</tr>
40
		<tr style="{DISPLAY_FORM}">
41
			<td height="10" colspan="2"></td>
42
		</tr>
43
		</table>
44
	</form>
45
	
46
	<center>
47
		<a href="{LOGIN_URL}">{TEXT_NEED_TO_LOGIN}</a>
48
		<br />
49
		<br />
50
		<a href="{WB_URL}/">{TEXT_HOME}</a>
51
	</center>
52

  
53
	</td>
54
</tr>
55
</table>
56

  
57
<table summary="" cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
58
<tr>
59
	<td style="font-size:12px;text-align:center;">
60
      <!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
61
      <a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a> is released under the
62
      <a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
63
      <!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
64
	</td>
65
</tr>
66
</table>
67

  
68
</body>
69
</html>
70
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/error.htt
1
<!-- BEGIN main_block -->
2
<div class="error-box rounded">
3
	<p>{MESSAGE}</p>
4
<input type="button" name="submit" value="{BACK}" onclick="javascript: window.location = '{LINK}';" />
5
</div>
6
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/footer.htt
1
<!-- BEGIN footer_block -->
2

  
3
</div>
4
</div>
5

  
6
<table summary="" cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0;">
7
  <tr>
8
    <td style="font-size:12px;text-align:center;">
9
      <!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
10
      <a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a> is released under the
11
      <a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
12
      <!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
13
    </td>
14
  </tr>
15
</table>
16
{BACKEND_BODY_MODULE_JS}
17
</body>
18
</html>
19
<!-- END footer_block -->
branches/2.8.x/wb/admin/themes/templates/pages.htt
1
<!-- BEGIN main_block -->
2
<div class="{DISPLAY_ADD}">
3
<h2>{HEADING_ADD_PAGE}</h2>
4
<form name="add" action="add.php" method="post">
5
{FTAN}
6
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
7
  <tr>
8
	<td width="70" height="20">{TEXT_TITLE}:</td>
9
	<td width="240" height="20"><input type="text" name="title" style="width: 232px;" /></td>
10
	<td rowspan="6" valign="top" style="padding-left: 20px; padding-top: 8px;">{TEXT_ADMINISTRATORS}:
11
		<ul style="list-style-type: none; margin: 0; padding: 0;">
12
			<!-- BEGIN group_list_block -->
13
			<li>
14
			<input type="checkbox" name="admin_groups[]" id="admin_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
15
			<label for="admin_group_{TOGGLE}">{NAME}</label>
16
			</li>
17
			<!-- END group_list_block -->
18
		</ul>
19
	</td>
20
	<td rowspan="6" valign="top" style="padding-left: 20px; padding-top: 8px;">
21
		<div id="viewers" style="display: none;">{TEXT_REGISTERED_VIEWERS}:
22
			<ul style="list-style-type: none; margin: 0; padding: 0;">
23
				<!-- BEGIN group_list_block2 -->
24
				<li>
25
				<input type="checkbox" name="viewing_groups[]" id="viewing_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
26
				<label for="viewing_group_{TOGGLE}">{NAME}</label>
27
				</li>
28
				<!-- END group_list_block2 -->
29
			</ul>
30
		</div>
31
	</td>
32
  </tr>
33
  <tr>
34
	<td width="70">{TEXT_TYPE}:</td>
35
	<td width="240">
36
		<select name="type" style="width: 240px;">
37
			<!-- BEGIN module_list_block -->
38
				<option value="{VALUE}"{SELECTED}>{NAME}</option>
39
			<!-- END module_list_block -->
40
		</select>
41
	</td>
42
  </tr>
43
  <tr>
44
	<td width="70">{TEXT_PARENT}:</td>
45
	<td width="240">
46
		<select  name="parent" style="width: 240px;" onchange="return disabled_hack_for_ie(this);">
47
			<!-- BEGIN page_list_block2 -->
48
			<option value="{ID}"{DISABLED} style="background: {FLAG_ROOT_ICON} no-repeat center left; padding-left: 20px;">{TITLE}</option>
49
			<!-- END page_list_block2 -->
50
		</select>
51
	</td>
52
  </tr>
53
  <tr>
54
	<td width="70">{TEXT_VISIBILITY}:</td>
55
	<td width="240">
56
		<select name="visibility" onchange="javascript: toggle_viewers();" style="width: 240px;">
57
			<option value="public"{SELECTED}>{TEXT_PUBLIC}</option>
58
			<option value="private">{TEXT_PRIVATE}</option>
59
			<option value="registered">{TEXT_REGISTERED}</option>
60
			<option value="hidden">{TEXT_HIDDEN}</option>
61
			<option value="none">{TEXT_NONE}</option>
62
		</select>
63
	</td>
64
  </tr>
65
  <tr>
66
	<td width="70">&nbsp;</td>
67
	<td colspan="4">
68
		<input type="submit" name="submit" value="{TEXT_ADD}" style="width: 117px;" />
69
		<input type="reset" name="reset" value="{TEXT_RESET}" style="width: 117px;" />
70
	</td>
71
  </tr>
72
  <tr>
73
	<td>&nbsp;</td>
74
	<td>&nbsp;</td>
75
  </tr>
76
</table>
77
</form>
78
</div>
79
<div class="{DISPLAY_INTRO}" style="padding-top: 10px;">
80
<br />
81
<h2>{HEADING_MODIFY_INTRO_PAGE}</h2>
82
<a href="intro.php">{INTRO_LINK}</a>
83
</div>
84
<!-- Addition for remembering expanded state of pages -->
85
<script type="text/javascript">
86
var THEME_URL = '{THEME_URL}';
87
var WB_URL = '{WB_URL}';
88
</script>
89
<script src="{ADMIN_URL}/pages/page_index.js" type="text/javascript"></script>
90
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/settings.htt
1
<!-- BEGIN main_block -->
2

  
3
<form name="settings" action="save.php" method="post">
4
<input type="hidden" name="advanced" value="{ADVANCED}" />
5
{FTAN}
6

  
7
<table summary="" cellpadding="3" cellspacing="0" border="0" align="center" width="100%" class="settings_table">
8
<tr>
9
	<td colspan="3"><h2>{HEADING_GENERAL_SETTINGS}</h2></td>
10
</tr>
11
<tr>
12
	<td class="setting_name" width="200">{TEXT_WEBSITE_TITLE}:</td>
13
	<td class="setting_value" colspan="3" width="700">
14
		<input type="text" name="website_title" value="{WEBSITE_TITLE}" />
15
	</td>
16
</tr>
17
<tr>
18
	<td class="setting_name">{TEXT_WEBSITE_DESCRIPTION}:</td>
19
	<td class="setting_value" colspan="3">
20
		<textarea name="website_description" cols="50" rows="3">{WEBSITE_DESCRIPTION}</textarea>
21
	</td>
22
</tr>
23
<tr>
24
	<td class="setting_name">{TEXT_WEBSITE_KEYWORDS}:</td>
25
	<td class="setting_value" colspan="3">
26
		<textarea name="website_keywords" cols="50" rows="3" >{WEBSITE_KEYWORDS}</textarea>
27
	</td>
28
</tr>
29
<tr>
30
	<td class="setting_name">{TEXT_WEBSITE_HEADER}:</td>
31
	<td class="setting_value" colspan="3">
32
		<textarea name="website_header" cols="50" rows="3">{WEBSITE_HEADER}</textarea>
33
	</td>
34
</tr>
35
<tr>
36
	<td class="setting_name">{TEXT_WEBSITE_FOOTER}:</td>
37
	<td class="setting_value" colspan="3">
38
		<textarea name="website_footer" cols="50" rows="3">{WEBSITE_FOOTER}</textarea>
39
	</td>
40
</tr>
41
<tr{DISPLAY_ADVANCED}>
42
	<td class="setting_name" width="200">{TEXT_PAGE_LEVEL_LIMIT}:</td>
43
	<td class="setting_value" colspan="3" width="700">
44
		<select name="page_level_limit">
45
		<!-- BEGIN page_level_limit_list_block -->
46
			<option value="{NUMBER}"{SELECTED}>{NUMBER}</option>
47
		<!-- END page_level_limit_list_block -->
48
		</select>
49
	</td>
50
</tr>
51
<tr>
52
	<td class="setting_name">{TEXT_PAGE_TRASH}:</td>
53
	<td class="setting_value" colspan="3">
54
		<input type="radio" name="page_trash" id="page_trash_disabled" style="width: 14px; height: 14px;" value="disabled"{PAGE_TRASH_DISABLED} />
55
		<label for="page_trash_disabled">{TEXT_DISABLED}</label>
56
		<input type="radio" name="page_trash" id="page_trash_inline" style="width: 14px; height: 14px;" value="inline"{PAGE_TRASH_INLINE} />
57
		<label for="page_trash_inline">{TEXT_INLINE}</label>
58
		<div style="margin: 0; padding: 0;{DISPLAY_PAGE_TRASH_SEPARATE}">
59
			<input type="radio" name="page_trash" id="page_trash_separate" style="width: 14px; height: 14px;" value="separate"{PAGE_TRASH_SEPARATE} />
60
			<label for="page_trash_separate">{TEXT_SEPARATE}</label>
61
		</div>
62
	</td>
63
</tr>
64
<tr{DISPLAY_ADVANCED}>
65
        <td class="setting_name">{TEXT_PAGE_LANGUAGES}:</td>
66
        <td class="setting_value" colspan="3">
67
                <input type="radio" name="page_languages" id="page_languages_true" style="width: 14px; height: 14px;" value="true"{PAGE_LANGUAGES_ENABLED} />
68
                <label for="page_languages_true">{TEXT_ENABLED}</label>
69
                <input type="radio" name="page_languages" id="page_languages_false" style="width: 14px; height: 14px;" value="false"{PAGE_LANGUAGES_DISABLED} />
70
                <label for="page_languages_false">{TEXT_DISABLED}</label>
71
		</td>
72
</tr>
73
<tr{DISPLAY_ADVANCED}>
74
	<td class="setting_name">{TEXT_MULTIPLE_MENUS}:</td>
75
	<td class="setting_value" colspan="3">
76
		<input type="radio" name="multiple_menus" id="multiple_menus_true" style="width: 14px; height: 14px;" value="true"{MULTIPLE_MENUS_ENABLED} />
77
		<label for="multiple_menus_true">{TEXT_ENABLED}</label>
78
		<input type="radio" name="multiple_menus" id="multiple_menus_false" style="width: 14px; height: 14px;" value="false"{MULTIPLE_MENUS_DISABLED} />
79
		<label for="multiple_menus_false">{TEXT_DISABLED}</label>
80
	</td>
81
</tr>
82
<tr>
83
	<td class="setting_name">{TEXT_HOME_FOLDERS}:</td>
84
	<td class="setting_value" colspan="3">
85
		<input type="radio" name="home_folders" id="home_folders_true" style="width: 14px; height: 14px;" value="true"{HOME_FOLDERS_ENABLED} />
86
		<label for="home_folders_true">{TEXT_ENABLED}</label>
87
		<input type="radio" name="home_folders" id="home_folders_false" style="width: 14px; height: 14px;" value="false"{HOME_FOLDERS_DISABLED} />
88
		<label for="home_folders_false">{TEXT_DISABLED}</label>
89
	</td>
90
</tr>
91
<tr{DISPLAY_ADVANCED}>
92
	<td class="setting_name">{TEXT_MANAGE_SECTIONS}:</td>
93
	<td class="setting_value" colspan="3">
94
		<input type="radio" name="manage_sections" id="manage_sections_true" style="width: 14px; height: 14px;" value="true"{MANAGE_SECTIONS_ENABLED} />
95
		<label for="manage_sections_true">{TEXT_ENABLED}</label>
96
		<input type="radio" name="manage_sections" id="manage_sections_false" style="width: 14px; height: 14px;" value="false"{MANAGE_SECTIONS_DISABLED} />
97
		<label for="manage_sections_false">{TEXT_DISABLED}</label>
98
	</td>
99
</tr>
100
<tr{DISPLAY_ADVANCED}>
101
	<td class="setting_name">{TEXT_SECTION_BLOCKS}:</td>
102
	<td class="setting_value" colspan="3">
103
		<input type="radio" name="section_blocks" id="section_blocks_true" style="width: 14px; height: 14px;" value="true"{SECTION_BLOCKS_ENABLED} />
104
		<label for="section_blocks_true">{TEXT_ENABLED}</label>
105
		<input type="radio" name="section_blocks" id="section_blocks_false" style="width: 14px; height: 14px;" value="false"{SECTION_BLOCKS_DISABLED} />
106
		<label for="section_blocks_false">{TEXT_DISABLED}</label>
107
	</td>
108
</tr>
109
<tr>
110
	<td class="setting_name">{TEXT_INTRO_PAGE}:</td>
111
	<td class="setting_value" colspan="3">
112
		<input type="radio" name="intro_page" id="intro_page_true" style="width: 14px; height: 14px;" value="true"{INTRO_PAGE_ENABLED} />
113
		<label for="intro_page_true">{TEXT_ENABLED}</label>
114
		<input type="radio" name="intro_page" id="intro_page_false" style="width: 14px; height: 14px;" value="false"{INTRO_PAGE_DISABLED} />
115
		<label for="intro_page_false">{TEXT_DISABLED}</label>
116
	</td>
117
</tr>
118
<tr{DISPLAY_ADVANCED}>
119
	<td class="setting_name">{TEXT_HOMEPAGE_REDIRECTION}:</td>
120
	<td class="setting_value" colspan="3">
121
		<input type="radio" name="homepage_redirection" id="homepage_redirection_true" style="width: 14px; height: 14px;" value="true"{HOMEPAGE_REDIRECTION_ENABLED} />
122
		<label for="homepage_redirection_true">{TEXT_ENABLED}</label>
123
		<input type="radio" name="homepage_redirection" id="homepage_redirection_false" style="width: 14px; height: 14px;" value="false"{HOMEPAGE_REDIRECTION_DISABLED} />
124
		<label for="homepage_redirection_false">{TEXT_DISABLED}</label>
125
	</td>
126
</tr>
127
<tr{DISPLAY_ADVANCED}>
128
	<td class="setting_name">{TEXT_SMART_LOGIN}:</td>
129
	<td class="setting_value" colspan="3">
130
		<input type="radio" name="smart_login" id="smart_login_true" style="width: 14px; height: 14px;" value="true"{SMART_LOGIN_ENABLED} />
131
		<label for="smart_login_true">{TEXT_ENABLED}</label>
132
		<input type="radio" name="smart_login" id="smart_login_false" style="width: 14px; height: 14px;" value="false"{SMART_LOGIN_DISABLED} />
133
		<label for="smart_login_false">{TEXT_DISABLED}</label>
134
	</td>
135
</tr>
136
<tr>
137
	<td class="setting_name">{TEXT_LOGIN}:</td>
138
	<td class="setting_value" colspan="3">
139
		<input type="radio" name="frontend_login" id="frontend_login_true" style="width: 14px; height: 14px;" value="true"{PRIVATE_ENABLED} />
140
		<label for="frontend_login_true">{TEXT_ENABLED}</label>
141
		<input type="radio" name="frontend_login" id="frontend_login_false" style="width: 14px; height: 14px;" value="false"{PRIVATE_DISABLED} />
142
		<label for="frontend_login_false">{TEXT_DISABLED}</label>
143
	</td>
144
</tr>
145
<tr{DISPLAY_ADVANCED}>
146
	<td class="setting_name">{TEXT_REDIRECT_AFTER}:</td>
147
	<td class="setting_value" colspan="3">
148
		<input type="text" name="redirect_timer" value="{REDIRECT_TIMER}" style="width:50%;" />
149
		<label>&nbsp;&nbsp;( <strong>-1</strong> = {TEXT_DISABLED}, <strong>0 -10000</strong> )</label><br />
150
	</td>
151
</tr>
152
<tr>
153
	<td class="setting_name">{TEXT_SIGNUP}:</td>
154
	<td class="setting_value" colspan="3">
155
		<select name="frontend_signup">
156
			<option value="false">{TEXT_DISABLED}</option>
157
			<!-- BEGIN group_list_block -->
158
				<option value="{ID}" {SELECTED}>{NAME}</option>
159
			<!-- END group_list_block -->
160
		</select>
161
	</td>
162
</tr>
163
<tr{DISPLAY_ADVANCED}>
164
	<td class="setting_name">{TEXT_PHP_ERROR_LEVEL}:</td>
165
	<td class="setting_value" colspan="3">
166
		<select name="er_level">
167
			<option value="">{TEXT_PLEASE_SELECT}...</option>
168
			<!-- BEGIN error_reporting_list_block -->
169
				<option value="{VALUE}"{SELECTED}>{NAME}</option>
170
			<!-- END error_reporting_list_block -->
171
		</select>
172
	</td>
173
</tr>
174
<tr{DISPLAY_ADVANCED}>
175
	<td class="setting_name">{TEXT_WYSIWYG_STYLE}:</td>
176
	<td class="setting_value" colspan="3"><input type="text" name="wysiwyg_style" value="{WYSIWYG_STYLE}" /></td>
177
</tr>
178
<tr{DISPLAY_ADVANCED}>
179
	<td class="setting_name">{TEXT_WYSIWYG_EDITOR}:</td>
180
	<td class="setting_value" colspan="3">
181
		<select name="wysiwyg_editor">
182
		<!-- BEGIN editor_list_block -->
183
			<option value="{FILE}"{SELECTED}>{NAME}</option>
184
		<!-- END editor_list_block -->
185
		</select>
186
	</td>
187
</tr>
188
<tr>
189
	<td>&nbsp;</td>
190
	<td>
191
		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
192
		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
193
	</td>
194
	<td style="text-align: right;">
195
		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
196
	</td>
197
</tr>
198
<tr>
199
	<td colspan="3" style="padding-top: 10px;"><h2>{HEADING_DEFAULT_SETTINGS}</h2></td>
200
</tr>
201
<tr>
202
	<td class="setting_name">{TEXT_LANGUAGE}:</td>
203
	<td class="setting_value" colspan="3">
204
		<select name="default_language">
205
			<!-- BEGIN language_list_block -->
206
			<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
207
			<!-- END language_list_block -->
208
		</select>
209
	</td>
210
</tr>
211
<tr{DISPLAY_ADVANCED}>
212
	<td class="setting_name">{TEXT_CHARSET}:</td>
213
	<td class="setting_value" colspan="3">
214
		<select name="default_charset">
215
			<option value="">{TEXT_PLEASE_SELECT}...</option>
216
			<!-- BEGIN charset_list_block -->
217
				<option value="{VALUE}" {SELECTED}>{NAME}</option>
218
			<!-- END charset_list_block -->
219
		</select>
220
	</td>
221
</tr>
222
<tr>
223
	<td class="setting_name">{TEXT_TIMEZONE}:</td>
224
	<td class="setting_value" colspan="3">
225
		<select name="default_timezone">
226
			<option value="0">{TEXT_PLEASE_SELECT}...</option>
227
			<!-- BEGIN timezone_list_block -->
228
				<option value="{VALUE}" {SELECTED}>{NAME}</option>
229
			<!-- END timezone_list_block -->
230
		</select>
231
	</td>
232
</tr>
233
<tr>
234
	<td class="setting_name">{TEXT_DATE_FORMAT}:</td>
235
	<td class="setting_value" colspan="3">
236
		<select name="default_date_format">
237
			<option value="M d Y">{TEXT_PLEASE_SELECT}...</option>
238
			<!-- BEGIN date_format_list_block -->
239
				<option value="{VALUE}" {SELECTED}>{NAME}</option>
240
			<!-- END date_format_list_block -->
241
		</select>
242
	</td>
243
</tr>
244
<tr>
245
	<td class="setting_name">{TEXT_TIME_FORMAT}:</td>
246
	<td class="setting_value" colspan="3">
247
		<select name="default_time_format">
248
			<option value="g:i A">{TEXT_PLEASE_SELECT}...</option>
249
			<!-- BEGIN time_format_list_block -->
250
				<option value="{VALUE}" {SELECTED}>{NAME}</option>
251
			<!-- END time_format_list_block -->
252
		</select>
253
	</td>
254
</tr>
255
<tr>
256
	<td class="setting_name">{TEXT_TEMPLATE}:</td>
257
	<td class="setting_value" colspan="3">
258
		<select name="default_template">
259
		<!-- BEGIN template_list_block -->
260
			<option value="{FILE}"{SELECTED}>{NAME}</option>
261
		<!-- END template_list_block -->
262
		</select>
263
	</td>
264
</tr>
265
<tr>
266
	<td class="setting_name">{TEXT_THEME}:</td>
267
	<td class="setting_value" colspan="3">
268
		<select name="default_theme">
269
		<!-- BEGIN theme_list_block -->
270
			<option value="{FILE}"{SELECTED}>{NAME}</option>
271
		<!-- END theme_list_block -->
272
		</select>
273
	</td>
274
</tr>
275
<tr>
276
	<td>&nbsp;</td>
277
	<td>
278
		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
279
		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
280
	</td>
281
	<td style="text-align: right;">
282
		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
283
	</td>
284
</tr>
285
<tr>
286
	<td colspan="3" style="padding-top: 10px;"><h2>{HEADING_SEARCH_SETTINGS}</h2></td>
287
</tr>
288
<tr>
289
	<td class="setting_name">{TEXT_VISIBILITY}:</td>
290
	<td class="setting_value" colspan="3">
291
		<select name="search">
292
			<option value="public">{TEXT_PUBLIC}</option>
293
			<option value="private" {PRIVATE_SEARCH}>{TEXT_PRIVATE}</option>
294
			<option value="registered" {REGISTERED_SEARCH}>{TEXT_REGISTERED}</option>
295
			<option value="none" {NONE_SEARCH}>{TEXT_NONE}</option>
296
		</select>
297
	</td>
298
</tr>
299
<tr>
300
	<td class="setting_name">{TEXT_TEMPLATE}:</td>
301
	<td class="setting_value" colspan="3">
302
		<select name="search_template">
303
		<!-- BEGIN search_template_list_block -->
304
			<option value="{FILE}"{SELECTED}>{NAME}</option>
305
		<!-- END search_template_list_block -->
306
		</select>
307
	</td>
308
</tr>
309
<tr{DISPLAY_ADVANCED}>
310
	<td class="setting_name">{TEXT_HEADER}:</td>
311
	<td class="setting_value" colspan="3">
312
		<textarea name="search_header" style="height: 100px;" cols="50" rows="3">{SEARCH_HEADER}</textarea>
313
	</td>
314
</tr>
315
<tr{DISPLAY_ADVANCED}>
316
	<td class="setting_name">{TEXT_RESULTS_HEADER}:</td>
317
	<td class="setting_value" colspan="3">
318
		<textarea name="search_results_header" cols="50" rows="3">{SEARCH_RESULTS_HEADER}</textarea>
319
	</td>
320
</tr>
321
<tr{DISPLAY_ADVANCED}>
322
	<td class="setting_name">{TEXT_RESULTS_LOOP}:</td>
323
	<td class="setting_value" colspan="3">
324
		<textarea name="search_results_loop" cols="50" rows="3">{SEARCH_RESULTS_LOOP}</textarea>
325
	</td>
326
</tr>
327
<tr{DISPLAY_ADVANCED}>
328
	<td class="setting_name">{TEXT_RESULTS_FOOTER}:</td>
329
	<td class="setting_value" colspan="3">
330
		<textarea name="search_results_footer" cols="50" rows="3">{SEARCH_RESULTS_FOOTER}</textarea>
331
	</td>
332
</tr>
333
<tr{DISPLAY_ADVANCED}>
334
	<td class="setting_name">{TEXT_NO_RESULTS}:</td>
335
	<td class="setting_value" colspan="3">
336
		<input type="text" name="search_no_results" value="{SEARCH_NO_RESULTS}" />
337
	</td>
338
</tr>
339
<tr{DISPLAY_ADVANCED}>
340
	<td class="setting_name">{TEXT_FOOTER}:</td>
341
	<td class="setting_value" colspan="3">
342
		<textarea name="search_footer" cols="50" rows="3">{SEARCH_FOOTER}</textarea>
343
	</td>
344
</tr>
345
<tr{DISPLAY_ADVANCED}>
346
	<td class="setting_name">{TEXT_MODULE_ORDER}:</td>
347
	<td class="setting_value" colspan="3">
348
		<input type="text" name="search_module_order" value="{SEARCH_MODULE_ORDER}" />
349
	</td>
350
</tr>
351
<tr{DISPLAY_ADVANCED}>
352
	<td class="setting_name">{TEXT_MAX_EXCERPT}:</td>
353
	<td class="setting_value" colspan="3">
354
		<input type="text" name="search_max_excerpt" value="{SEARCH_MAX_EXCERPT}" />
355
	</td>
356
</tr>
357
<tr{DISPLAY_ADVANCED}>
358
	<td class="setting_name">{TEXT_TIME_LIMIT}:</td>
359
	<td class="setting_value" colspan="3">
360
		<input type="text" name="search_time_limit" value="{SEARCH_TIME_LIMIT}" />
361
	</td>
362
</tr>
363
<tr>
364
	<td>&nbsp;</td>
365
	<td>
366
		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
367
		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
368
	</td>
369
	<td style="text-align: right;">
370
		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
371
	</td>
372
</tr>
373
<tr>
374
	<td colspan="3" style="padding-top: 10px;"><h2>{HEADING_SERVER_SETTINGS}</h2></td>
375
</tr>
376
<tr>
377
	<td class="setting_name">{TEXT_SERVER_OPERATING_SYSTEM}:</td>
378
	<td class="setting_value" colspan="3">
379
		<input type="radio" name="operating_system" id="operating_system_linux" onclick="javascript: change_os('linux');" style="width: 14px; height: 14px;" value="linux"{LINUX_SELECTED} />
380
		<label for="operating_system_linux" onclick="javascript: change_os('linux');">{TEXT_LINUX_UNIX_BASED}</label>
381
		<input type="radio" name="operating_system" id="operating_system_windows" onclick="javascript: change_os('windows');" style="width: 14px; height: 14px;" value="windows"{WINDOWS_SELECTED} />
382
		<label for="operating_system_windows" onclick="javascript: change_os('windows');">{TEXT_WINDOWS}</label>
383
	</td>
384
</tr>
385
<tr>
386
	<td class="setting_name"><div id="{BASIC_FILE_PERMS_ID}1" style="margin: 0; padding: 0;">&nbsp;</div></td>
387
	<td class="setting_value" colspan="3">
388
		<div id="{BASIC_FILE_PERMS_ID}2" style="margin: 0; padding: 0;">
389
			<input type="checkbox" name="world_writeable" id="world_writeable" style="width: 14px; height: 14px;" value="true"{WORLD_WRITEABLE_SELECTED} />
390
			<label for="world_writeable">
391
				{TEXT_WORLD_WRITEABLE_FILE_PERMISSIONS} (777)
392
			</label>
393
			<span class="warning">({WORLD_WRITEABLE_WARNING})</span>
394
		</div>
395
		<div id="{BASIC_FILE_PERMS_ID}3" style="margin: 0; padding: 0;"></div>
396
	</td>
397
</tr>
398

  
399
<tr{DISPLAY_ADVANCED}>
400
	<td class="setting_name"><div id="{ADVANCED_FILE_PERMS_ID}1" style="margin: 0; padding: 0;">{TEXT_FILESYSTEM_PERMISSIONS}:</div></td>
401
	<td class="setting_value" id="file_mode" align="left">
402
		<table summary="" cellpadding="2" cellspacing="0" border="0" width="90%" style="border-right: 1px solid #ddd;" id="{ADVANCED_FILE_PERMS_ID}2">
403
		<tr>
404
			<td colspan="3" style="text-align: center; font-weight: bold;">{TEXT_FILES}:</td>
405
		</tr>
406
		<tr>
407
			<td>{TEXT_USER}:</td>
408
			<td>{TEXT_GROUP}:</td>
409
			<td>{TEXT_OTHERS}:</td>
410
		</tr>
411
		<tr>
412
			<td>
413
				<input type="checkbox" name="file_u_r" id="file_u_r" value="true"{FILE_U_R_CHECKED} />
414
				<label for="file_u_r">{TEXT_READ}</label>
415
				<br />
416
				<input type="checkbox" name="file_u_w" id="file_u_w" value="true"{FILE_U_W_CHECKED} />
417
				<label for="file_u_w">{TEXT_WRITE}</label>
418
				<br />
419
				<input type="checkbox" name="file_u_e" id="file_u_e" value="true"{FILE_U_E_CHECKED} />
420
				<label for="file_u_e">{TEXT_EXECUTE}</label>
421
			</td>
422
			<td>
423
				<input type="checkbox" name="file_g_r" id="file_g_r" value="true"{FILE_G_R_CHECKED} />
424
				<label for="file_g_r">{TEXT_READ}</label>
425
				<br />
426
				<input type="checkbox" name="file_g_w" id="file_g_w" value="true"{FILE_G_W_CHECKED} />
427
				<label for="file_g_w">{TEXT_WRITE}</label>
428
				<br />
429
				<input type="checkbox" name="file_g_e" id="file_g_e" value="true"{FILE_G_E_CHECKED} />
430
				<label for="file_g_e">{TEXT_EXECUTE}</label>
431
			</td>
432
			<td>
433
				<input type="checkbox" name="file_o_r" id="file_o_r" value="true"{FILE_O_R_CHECKED} />
434
				<label for="file_o_r">{TEXT_READ}</label>
435
				<br />
436
				<input type="checkbox" name="file_o_w" id="file_o_w" value="true"{FILE_O_W_CHECKED} />
437
				<label for="file_o_w">{TEXT_WRITE}</label>
438
				<br />
439
				<input type="checkbox" name="file_o_e" id="file_o_e" value="true"{FILE_O_E_CHECKED} />
440
				<label for="file_o_e">{TEXT_EXECUTE}</label>
441
			</td>
442
		</tr>
443
		</table>
444
	</td>
445
	<td class="setting_value" id="dir_mode" style="text-align: right;">
446
		<table summary="" cellpadding="2" cellspacing="0" border="0" width="90%" id="{ADVANCED_FILE_PERMS_ID}3">
447
		<tr>
448
			<td colspan="3" style="text-align: center; font-weight: bold;">{TEXT_DIRECTORIES}:</td>
449
		</tr>
450
		<tr>
451
			<td>{TEXT_USER}:</td>
452
			<td>{TEXT_GROUP}:</td>
453
			<td>{TEXT_OTHERS}:</td>
454
		</tr>
455
		<tr>
456
			<td>
457
				<input type="checkbox" name="dir_u_r" id="dir_u_r" value="true"{DIR_U_R_CHECKED} />
458
				<label for="dir_u_r">{TEXT_READ}</label>
459
				<br />
460
				<input type="checkbox" name="dir_u_w" id="dir_u_w" value="true"{DIR_U_W_CHECKED} />
461
				<label for="dir_u_w">{TEXT_WRITE}</label>
462
				<br />
463
				<input type="checkbox" name="dir_u_e" id="dir_u_e" value="true"{DIR_U_E_CHECKED} />
464
				<label for="dir_u_e">{TEXT_EXECUTE}</label>
465
			</td>
466
			<td>
467
				<input type="checkbox" name="dir_g_r" id="dir_g_r" value="true"{DIR_G_R_CHECKED} />
468
				<label for="dir_g_r">{TEXT_READ}</label>
469
				<br />
470
				<input type="checkbox" name="dir_g_w" id="dir_g_w" value="true"{DIR_G_W_CHECKED} />
471
				<label for="dir_g_w">{TEXT_WRITE}</label>
472
				<br />
473
				<input type="checkbox" name="dir_g_e" id="dir_g_e" value="true"{DIR_G_E_CHECKED} />
474
				<label for="dir_g_e">{TEXT_EXECUTE}</label>
475
			</td>
476
			<td>
477
				<input type="checkbox" name="dir_o_r" id="dir_o_r" value="true"{DIR_O_R_CHECKED} />
478
				<label for="dir_o_r">{TEXT_READ}</label>
479
				<br />
480
				<input type="checkbox" name="dir_o_w" id="dir_o_w" value="true"{DIR_O_W_CHECKED} />
481
				<label for="dir_o_w">{TEXT_WRITE}</label>
482
				<br />
483
				<input type="checkbox" name="dir_o_e" id="dir_o_e" value="true"{DIR_O_E_CHECKED} />
484
				<label for="dir_o_e">{TEXT_EXECUTE}</label>
485
			</td>
486
		</tr>
487
		</table>
488
	</td>
489
</tr>
490
<tr{DISPLAY_ADVANCED}>
491
	<td class="setting_name">{TEXT_PAGES_DIRECTORY}:</td>
492
	<td class="setting_value" colspan="3"><input type="text" name="pages_directory" value="{PAGES_DIRECTORY}" /></td>
493
</tr>
494
<tr{DISPLAY_ADVANCED}>
495
	<td class="setting_name">{TEXT_MEDIA_DIRECTORY}:</td>
496
	<td class="setting_value" colspan="3"><input type="text" name="media_directory" value="{MEDIA_DIRECTORY}" /></td>
497
</tr>
498
<tr{DISPLAY_ADVANCED}>
499
	<td class="setting_name">{TEXT_PAGE_EXTENSION}:</td>
500
	<td class="setting_value" colspan="3"><input type="text" name="page_extension" value="{PAGE_EXTENSION}" /></td>
501
</tr>
502
<tr{DISPLAY_ADVANCED}>
503
	<td class="setting_name">{TEXT_PAGE_SPACER}:</td>
504
	<td class="setting_value" colspan="3"><input type="text" name="page_spacer" value="{PAGE_SPACER}" /></td>
505
</tr>
506
<tr{DISPLAY_ADVANCED}>
507
	<td class="setting_name">{TEXT_RENAME_FILES_ON_UPLOAD}:</td>
508
	<td class="setting_value" colspan="3"><input type="text" name="rename_files_on_upload" value="{RENAME_FILES_ON_UPLOAD}" /></td>
509
</tr>
510
<tr{DISPLAY_ADVANCED}>
511
	<td class="setting_name">{TEXT_SESSION_IDENTIFIER}:</td>
512
	<td class="setting_value" colspan="3"><input type="text" name="app_name" value="{APP_NAME}" /></td>
513
</tr>
514
<tr{DISPLAY_ADVANCED}>
515
	<td class="setting_name">{TEXT_SEC_ANCHOR}:</td>
516
	<td class="setting_value" colspan="3"><input type="text" name="sec_anchor" value="{SEC_ANCHOR}" /></td>
517
</tr>
518
<!-- BASIC MAILER SETTINGS -->
519
<tr>
520
	<td colspan="3" style="padding-top: 10px;">
521
		<h2>{HEADING_WBMAILER_SETTINGS}</h2>
522
		<p style="line-height: 1.4em; margin-top: 0;">{TEXT_WBMAILER_DEFAULT_SETTINGS_NOTICE}</p>
523
	</td>
524
</tr>
525
<tr>
526
	<td class="setting_name">{TEXT_WBMAILER_DEFAULT_SENDER_MAIL}:</td>
527
	<td class="setting_value" colspan="3"><input type="text" style="width: 250px" name="server_email" value="{SERVER_EMAIL}" /></td>
528
</tr>
529
<tr>
530
	<td class="setting_name">{TEXT_WBMAILER_DEFAULT_SENDER_NAME}:</td>
531
	<td class="setting_value" colspan="3"><input type="text" style="width: 250px" name="wbmailer_default_sendername" value="{WBMAILER_DEFAULT_SENDERNAME}" /></td>
532
</tr>
533
<tr>
534
	<td class="setting_name">{TEXT_WBMAILER_FUNCTION}:</td>
535
	<td class="setting_value" colspan="3">
536
		<input type="radio" name="wbmailer_routine" id="wbmailer_routine_phpmail" onclick="javascript: change_wbmailer('phpmail');" style="width: 14px; height: 14px;" value="phpmail"{PHPMAIL_SELECTED} />
537
		<label for="wbmailer_routine_phpmail" onclick="javascript: change_wbmailer('phpmail');">{TEXT_WBMAILER_PHP}</label>
538
		<input type="radio" name="wbmailer_routine" id="wbmailer_routine_smtp" onclick="javascript: change_wbmailer('smtp');" style="width: 14px; height: 14px;" value="smtp"{SMTPMAIL_SELECTED} />
539
		<label for="wbmailer_routine_smtp" onclick="javascript: change_wbmailer('smtp');">{TEXT_WBMAILER_SMTP}</label>
540
	</td>
541
</tr>
542
<!-- MORE ADVANCED SMTP MAILER SETTINGS -->
543
<tr id="row_wbmailer_smtp_settings"{SMTP_VISIBILITY}>
544
	<td colspan="3" style="padding-top: 10px;"><p style="line-height: 1.4em; margin-top: 0;">{TEXT_WBMAILER_NOTICE}</p></td>
545
</tr>
546
<tr id="row_wbmailer_smtp_host"{SMTP_VISIBILITY}>
547
	<td class="setting_name">{TEXT_WBMAILER_SMTP_HOST}:</td>
548
	<td class="setting_value" colspan="3"><input type="text" style="width: 250px" name="wbmailer_smtp_host" value="{WBMAILER_SMTP_HOST}" /></td>
549
</tr>
550
<tr id="row_wbmailer_smtp_auth_mode"{SMTP_VISIBILITY}>
551
	<td class="setting_name">{TEXT_WBMAILER_SMTP_AUTH}:</td>
552
	<td class="setting_value" colspan="3">
553
		<input type="checkbox" name="wbmailer_smtp_auth" id="wbmailer_smtp_auth" onclick="javascript: toggle_wbmailer_auth();" style="width: 14px; height: 14px;" value="true"{SMTP_AUTH_SELECTED} />
554
		<label for="wbmailer_smtp_auth" onclick="javascript: toggle_wbmailer_auth(this.value);">({TEXT_WBMAILER_SMTP_AUTH_NOTICE})</label>
555
	</td>
556
</tr>
557
<tr id="row_wbmailer_smtp_username"{SMTP_VISIBILITY_AUTH}>
558
	<td class="setting_name">{TEXT_WBMAILER_SMTP_USERNAME}:</td>
559
	<td class="setting_value" colspan="3"><input type="text" style="width: 250px" name="wbmailer_smtp_username" value="{WBMAILER_SMTP_USERNAME}" /></td>
560
</tr>
561
<tr id="row_wbmailer_smtp_password"{SMTP_VISIBILITY_AUTH}>
562
	<td class="setting_name">{TEXT_WBMAILER_SMTP_PASSWORD}:</td>
563
	<td class="setting_value" colspan="3"><input type="password" style="width: 250px" name="wbmailer_smtp_password" value="{WBMAILER_SMTP_PASSWORD}" /></td>
564
</tr>
565
<tr>
566
	<td>&nbsp;</td>
567
	<td>
568
		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
569
		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
570
	</td>
571
	<td style="text-align: right;">
572
		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
573
	</td>
574
</tr>
575
</table>
576

  
577
</form>
578

  
579
<hr size="1" />
580

  
581
<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
582
<br />
583
<font class="{DISPLAY_ADVANCED_BUTTON}">{MODE_SWITCH_WARNING}</font>
584
<script src="{ADMIN_URL}/settings/setting.js" type="text/javascript"></script>
585
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/users.htt
1
<!-- BEGIN main_block -->
2

  
3
<form name="users" action="users.php" method="post">
4
<input type="hidden" name="userstatus" value="{USER_STATUS}" />
5
{FTAN}
6

  
7
<table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
8
	<tr style="background:#f0f0f0;">
9
		<td align="left"><h2>{HEADING_MODIFY_DELETE_USER}</h2></td>
10
		<td align="right">
11
		<!-- BEGIN manage_groups_block -->
12
		<a href="{ADMIN_URL}/groups/index.php">{TEXT_MANAGE_GROUPS}</a>
13
		<!-- END manage_groups_block -->
14
		</td>
15
     </tr>
16
</table>
17
<button type="button" name="status" title="{TEXT_USERS}" style="width: 30px; background: {STATUS_ICON} no-repeat center" value="{USER_STATUS}" onclick="javascript: window.location = 'index.php?status={USER_STATUS}';" class="status {DISPLAY_MODIFY}" >&nbsp;</button>
18
<select name="user_id" style="width: 500px;">
19
<!-- BEGIN list_block -->
20
	<option value="{VALUE}" {STATUS}>{NAME}</option>
21
<!-- END list_block -->
22
</select>
23

  
24
<input type="submit" name="modify" style="width: 100px;" value="{TEXT_MODIFY}" class="{DISPLAY_MODIFY}" />
25
<input type="submit" name="delete" style="width: 100px;" value="{TEXT_DELETE}" onclick="return confirm('{CONFIRM_DELETE}');" class="{DISPLAY_DELETE}" />
26

  
27
</form>
28

  
29
<br />
30
<h2 style="margin-top: 20px;" class="{DISPLAY_ADD}">{HEADING_ADD_USER}</h2>
31

  
32
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/access.htt
1
<!-- BEGIN main_block -->
2
<h2>{ACCESS}</h2>
3
<table summary="" cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
4
	<tr>
5
		<td align="center" valign="top">
6
			<!-- BEGIN users_block -->	
7
			<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_USERS} >
8
				<tr>
9
					<td class="graphic" align="center" valign="top" rowspan="2">
10
						<a href="{ADMIN_URL}/users/index.php"><img src="{THEME_URL}/icons/users.png" alt="{USERS}" /></a>
11
					</td>
12
					<td class="description" valign="top">
13
						<a href="{ADMIN_URL}/users/index.php"><span class="title">{USERS}</span></a><p>{USERS_OVERVIEW}</p>
14
					</td>
15
				</tr>
16
			</table>	
17
			<!-- END users_block -->
18
			<!-- BEGIN groups_block -->		
19
			<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_GROUPS} >
20
				<tr>
21
					<td class="graphic" align="center" valign="top" rowspan="2">
22
						<a href="{ADMIN_URL}/groups/index.php"><img src="{THEME_URL}/icons/groups.png" alt="{GROUPS}" /></a>
23
					</td>
24
					<td class="description" valign="top">
25
						<a href="{ADMIN_URL}/groups/index.php"><span class="title">{GROUPS}</span></a><p>{GROUPS_OVERVIEW}</p>
26
					</td>
27
				</tr>
28
			</table>
29
			<!-- END groups_block -->
30
		</td>
31
	</tr>
32
</table>
33
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/templates_details.htt
1
<!-- BEGIN main_block -->
2

  
3
<h2>{HEADING_TEMPLATE_DETAILS}</h2>
4

  
5
<table summary="" cellpadding="5" cellspacing="0" border="0">
6
<tr>
7
	<td width="100">{TEXT_NAME}:</td>
8
	<td>{NAME}</td>
9
</tr>
10
<tr>
11
	<td>{TEXT_AUTHOR}:</td>
12
	<td>{AUTHOR}</td>
13
</tr>
14
<tr>
15
	<td>{TEXT_VERSION}:</td>
16
	<td>{VERSION}</td>
17
</tr>
18
<tr>
19
	<td>{TEXT_DESIGNED_FOR}:</td>
20
	<td>Website Baker {DESIGNED_FOR}</td>
21
</tr>
22
<tr>
23
	<td valign="top">{TEXT_DESCRIPTION}:</td>
24
	<td style="text-align: justify;">{DESCRIPTION}</td>
25
</tr>
26
</table>
27

  
28
<br />
29

  
30
<button onclick="window.location = 'index.php';">{TEXT_BACK}</button>
31

  
32
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/pages_modify.htt
1
<!-- BEGIN main_block -->
2

  
3
<table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
4
<tr style="background:#f0f0f0;">
5
	<td valign="middle" align="left"><h2>{HEADING_MODIFY_PAGE}</h2></td>
6
	<td align="left" width="20%">ID: {PAGE_ID}</td>
7
	<td align="right">
8
		{TEXT_CURRENT_PAGE}:
9
		<b>{PAGE_TITLE}</b>
10
		- 
11
		<a href="{ADMIN_URL}/pages/settings.php?page_id={PAGE_IDKEY}">{TEXT_CHANGE_SETTINGS}</a>
12
<!-- BEGIN show_section_block -->
13
		<font style="{DISPLAY_MANAGE_SECTIONS}">-</font>
14
		<a href="{ADMIN_URL}/pages/sections.php?page_id={PAGE_IDKEY}" style="{DISPLAY_MANAGE_SECTIONS}">{TEXT_MANAGE_SECTIONS}</a>
15
<!-- END show_section_block -->
16
		<font style="color:#999;" class="{CLASS_DISPLAY_MODIFIED}"><br />
17
<!-- BEGIN show_modify_block -->
18
		{LAST_MODIFIED} {MODIFIED_BY} ({MODIFIED_BY_USERNAME}), {MODIFIED_WHEN}
19
<!-- END show_modify_block -->
20
		</font>
21
	</td>
22
</tr>
23
</table>
24

  
25
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/success.htt
1
<!-- BEGIN main_block -->
2
<div class="msg-box rounded">
3
	<p>{MESSAGE}</p>
4
<!-- BEGIN show_redirect_block -->
5
 <script type="text/javascript">
6
  setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
7
 </script>
8
<!-- END show_redirect_block -->
9
<input type="button" name="submit" value="{BACK}" onclick="javascript: window.location = '{REDIRECT}';" />
10
</div>
11
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/modules.htt
1
<!-- BEGIN main_block -->
2
<table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
3
	<tr style="background:#f0f0f0;">
4
		<td align="right">
5
			{URL_TEMPLATES}
6
			-
7
			{URL_LANGUAGES}
8
			-
9
			{URL_ADVANCED}
10
		</td>
11
     </tr>
12
</table>
13

  
14
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
15
{FTAN}
16
  <h2>{HEADING_INSTALL_MODULE}</h2>
17
  <table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
18
    <tr>
19
      <td valign="middle">
20
        <input type="file" name="userfile" size="97" />
21
        <script type="text/javascript">
22
		document.install.userfile.focus();
23
		</script><br />
24
        <input type="checkbox" name="overwrite" value="false"  />
25
		<span>{OVERWRITE_NEWER_FILES}</span>
26
      </td>
27
      <td width="110" align="left">
28
        <input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
29
      </td>
30
    </tr>
31
  </table>
32
  <br />
33
</form>
34
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
35
{FTAN}
36
  <h2>{HEADING_UNINSTALL_MODULE}</h2>
37
  <table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
38
    <tr>
39
      <td>
40
        <select name="file" style="width: 97;">
41
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
42
		<!-- BEGIN module_list_block -->
43
			<option value="{VALUE}">{NAME}</option>
44
          <!-- END module_list_block -->
45
        </select>
46
      </td>
47
      <td width="110">
48
        <input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
49
      </td>
50
    </tr>
51
  </table>
52
  <br />
53
</form>
54
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
55
{FTAN}
56
  <h2>{HEADING_MODULE_DETAILS}</h2>
57
  <table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
58
    <tr>
59
      <td>
60
        <select name="file" style="width: 97%;">
61
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
62
		<!-- BEGIN module_list_block -->
63
			<option value="{VALUE}">{NAME}</option>
64
          <!-- END module_list_block -->
65
        </select>
66
      </td>
67
      <td width="110">
68
        <input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
69
      </td>
70
    </tr>
71
  </table>
72
  <br />
73
</form>
74
<div class="{DISPLAY_MANUAL_INSTALL}">
75
  <h2>{HEADING_INVOKE_MODULE_FILES}</h2>
76
  <p>{TEXT_MANUAL_INSTALLATION}</p>
77
  <form name="manual_install" action="manual_install.php" method="post" class="{INSTALL_VISIBLE}">
78
{FTAN}
79
  <table summary="" cellpadding="0" cellspacing="2" border="0" width="80%">
80
	  <tr>
81
		<td width="150" valign="middle" nowrap="nowrap">{TEXT_FILE}: "install.php"</td>
82
		<td valign="middle">
83
			<input type="hidden" name="action" value="install" />
84
			<select name="file" style="width: 250px;">
85
	        <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
86
			<!-- BEGIN install_list_block -->
87
			<option value="{VALUE}">{NAME}</option>
88
			<!-- END install_list_block -->
89
			</select>
90
			<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width:100px;" />
91
		</td>
92
	  </tr>
93
  </table>
94
  </form>
95
  
96
  <form name="manual_upgrade" action="manual_install.php" method="post" class="{UPGRADE_VISIBLE}">
97
{FTAN}
98
  <table summary="" cellpadding="0" cellspacing="2" border="0" width="80%">
99
	  <tr>
100
		<td width="150" valign="middle" nowrap="nowrap">{TEXT_FILE}: "upgrade.php"</td>
101
		<td valign="middle" >
102
			<input type="hidden" name="action" value="upgrade" />
103
			<select name="file" style="width: 250px;">
104
	        <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
105
			<!-- BEGIN install_list_block -->
106
			<option value="{VALUE}">{NAME}</option>
107
			<!-- END install_list_block -->
108
			</select>
109
			<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width:100px;" />
110
		</td>
111
	  </tr>
112
  </table>
113
  </form>
114

  
115
  <form name="manual_uninstall" action="manual_install.php" method="post" class="{UNINSTALL_VISIBLE}">
116
{FTAN}
117
  <table summary="" cellpadding="0" cellspacing="2" border="0" width="80%">
118
	  <tr>
119
		<td width="150" valign="middle" nowrap="nowrap">{TEXT_FILE}: "uninstall.php"</td>
120
		<td valign="middle">
121
			<input type="hidden" name="action" value="uninstall" />
122
			<select name="file" style="width: 250px;">
123
	        <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
124
			<!-- BEGIN install_list_block -->
125
			<option value="{VALUE}">{NAME}</option>
126
			<!-- END install_list_block -->
127
			</select>
128
			<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width:100px;" />
129
			</td>
130
	  </tr>
131
  </table>
132
  </form>
133

  
134
  <p style="color:red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
135
</div>
136
<!-- END main_block -->
branches/2.8.x/wb/admin/themes/templates/addons.htt
1
<!-- BEGIN main_block -->
2
<table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
3
	<tr style="background:#f0f0f0;">
4
		<td valign="middle" align="left"><h2>{ADDONS_OVERVIEW}</h2></td>
5
		<td align="right">{URL_ADVANCED}</td>
6
	</tr>
7
</table>
8

  
9
<table summary="" cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
10
	<tr>
11
		<td align="center" valign="top">
12
			<!-- BEGIN modules_block -->
13
			<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_MODULES} >
14
				<tr>
15
					<td class="graphic" align="center" valign="middle" rowspan="2"><a href="{ADMIN_URL}/modules/index.php"><img src="{THEME_URL}/icons/modules.png" alt="0" /> </a> </td>
16
					<td class="description" valign="top"><a href="{ADMIN_URL}/modules/index.php"><span class="title">{MODULES}</span></a><p>{MODULES_OVERVIEW}</p></td>
17
				</tr>
18
			</table>
19
			<!-- END modules_block -->
20
			<!-- BEGIN templates_block -->
21
			<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_TEMPLATES} >
22
				<tr>
23
					<td class="graphic" align="center" valign="middle" rowspan="2"><a href="{ADMIN_URL}/templates/index.php"><img src="{THEME_URL}/icons/templates.png" alt="{TEMPLATES}" /> </a> </td>
24
					<td class="description" valign="top"><a href="{ADMIN_URL}/templates/index.php"><span class="title">{TEMPLATES}</span></a><p>{TEMPLATES_OVERVIEW}</p></td>
25
				</tr>
26
			</table>
27
			<!-- END templates_block -->
28
			<!-- BEGIN languages_block -->
29
			<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_LANGUAGES} >
30
				<tr>
31
					<td class="graphic" align="center" valign="middle" rowspan="2"><a href="{ADMIN_URL}/languages/index.php"><img src="{THEME_URL}/icons/languages.png" alt="{LANGUAGES}" /> </a> </td>
32
					<td class="description" valign="top"> <a href="{ADMIN_URL}/languages/index.php"><span class="title">{LANGUAGES}</span></a><p>{LANGUAGES_OVERVIEW}</p></td>
33
				</tr>
34
			</table>
35
			<!-- END languages_block -->
36
			<!-- BEGIN reload_block -->
37
			<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_RELOAD} >
38
				<tr>
39
					<td class="graphic" align="center" valign="middle" rowspan="2"><img src="{THEME_URL}/icons/admintools.png" alt="{TXT_ADMIN_SETTINGS}" /> </td>
40
					<td class="description" valign="top"><span class="title">{TXT_ADMIN_SETTINGS}</span>
41
						<form action="{RELOAD_URL}" method="post">
42
						{FTAN}
43
							{MESSAGE_RELOAD_ADDONS}
44
							<br style="margin-bottom: 0.5em" />
45
							<input {DISPLAY_MODULES} type="checkbox" name="reload_modules" id="reload_modules" value="true" />
46
							<label {DISPLAY_MODULES} for="reload_modules">{MODULES}</label>
47
							<input {DISPLAY_TEMPLATES} type="checkbox" name="reload_templates" id="reload_templates" value="true" />
48
							<label {DISPLAY_TEMPLATES} for="reload_templates">{TEMPLATES}</label>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff