Revision 1427
Added by Luisehahne about 14 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------- |
14 |
04 Feb-2011 Build 1427 Dietmar Woellbrink (Luisehahne) |
|
15 |
! validation fixes in wb_theme |
|
14 | 16 |
04 Feb-2011 Build 1426 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
! validation fixes |
16 | 18 |
04 Feb-2011 Build 1425 Dietmar Woellbrink (Luisehahne) |
branches/2.8.x/wb/admin/media/browse.php | ||
---|---|---|
94 | 94 |
// Check to see if the user wanted to go up a directory into the parent folder |
95 | 95 |
if($admin->get_get('up') == 1) { |
96 | 96 |
$parent_directory = dirname($directory); |
97 |
header("Location: browse.php?dir=$parent_directory");
|
|
97 |
header("Location: browse.php?dir=$parent_directory"); |
|
98 | 98 |
exit(0); |
99 | 99 |
} |
100 | 100 |
|
... | ... | |
103 | 103 |
} |
104 | 104 |
|
105 | 105 |
// Workout the parent dir link |
106 |
$parent_dir_link = ADMIN_URL.'/media/browse.php?dir='.$directory.'&up=1'; |
|
106 |
$parent_dir_link = ADMIN_URL.'/media/browse.php?dir='.$directory.'&up=1';
|
|
107 | 107 |
// Workout if the up arrow should be shown |
108 | 108 |
if(($directory == '') or ($directory==$currentHome)) { |
109 | 109 |
$display_up_arrow = 'hide'; |
... | ... | |
152 | 152 |
'NAME_SLASHED' => addslashes($name), |
153 | 153 |
'TEMP_ID' => $admin->getIDKEY($temp_id), |
154 | 154 |
'LINK' => "browse.php?dir=$directory/$link_name", |
155 |
'LINK_TARGET' => '', |
|
155 |
'LINK_TARGET' => '_SELF',
|
|
156 | 156 |
'ROW_BG_COLOR' => $row_bg_color, |
157 | 157 |
'FT_ICON' => THEME_URL.'/images/folder_16.png', |
158 | 158 |
'FILETYPE_ICON' => THEME_URL.'/images/folder_16.png', |
... | ... | |
182 | 182 |
$date = gmdate(DATE_FORMAT.' '.TIME_FORMAT, $fdate); |
183 | 183 |
$filetypeicon = get_filetype_icon(WB_URL.MEDIA_DIRECTORY.$directory.'/'.$name); |
184 | 184 |
$filetype = get_filetype(WB_URL.MEDIA_DIRECTORY.$directory.'/'.$name); |
185 |
|
|
185 |
|
|
186 | 186 |
if (in_array($filetype, $filepreview)) { |
187 | 187 |
$preview = 'preview'; |
188 | 188 |
} else { |
... | ... | |
198 | 198 |
$info = getimagesize(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name); |
199 | 199 |
if ($info[0]) { |
200 | 200 |
$imgdetail = fsize(filesize(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name)).'<br /> '.$info[0].' x '.$info[1].' px'; |
201 |
$icon = 'thumb.php?t=1&img='.$directory.'/'.$name; |
|
202 |
$tooltip = ShowTip('thumb.php?t=2&img='.$directory.'/'.$name); |
|
201 |
$icon = 'thumb.php?t=1&img='.$directory.'/'.$name;
|
|
202 |
$tooltip = ShowTip('thumb.php?t=2&img='.$directory.'/'.$name);
|
|
203 | 203 |
} |
204 | 204 |
} |
205 | 205 |
$template->set_var(array( |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC5'); |
55 |
if(!defined('REVISION')) define('REVISION', '1426');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1427');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/templates/wb_theme/templates/users_form.htt | ||
---|---|---|
1 |
<!-- BEGIN main_block -->
|
|
2 |
|
|
3 |
<script language="javascript" type="text/javascript">
|
|
4 |
function toggle_radio(radio_on, radio_off) {
|
|
5 |
document.getElementById(radio_on).checked = true;
|
|
6 |
document.getElementById(radio_off).checked = true;
|
|
7 |
}
|
|
8 |
</script>
|
|
9 |
|
|
10 |
<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_USER}</h2>
|
|
11 |
|
|
12 |
<form name="user" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}">
|
|
13 |
<input type="hidden" name="user_id" value="{USER_ID}" />
|
|
14 |
<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
|
|
15 |
{FTAN}
|
|
16 |
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
|
17 |
<tr>
|
|
18 |
<td width="150">{TEXT_USERNAME}:</td>
|
|
19 |
<td class="value_input">
|
|
20 |
<input type="text" name="{USERNAME_FIELDNAME}" maxlength="30" value="{USERNAME}" />
|
|
21 |
</td>
|
|
22 |
</tr>
|
|
23 |
<tr>
|
|
24 |
<td>{TEXT_PASSWORD}:</td>
|
|
25 |
<td class="value_input">
|
|
26 |
<input type="password" name="password" maxlength="30" />
|
|
27 |
</td>
|
|
28 |
</tr>
|
|
29 |
<tr>
|
|
30 |
<td>{TEXT_RETYPE_PASSWORD}:</td>
|
|
31 |
<td class="value_input">
|
|
32 |
<input type="password" name="password2" maxlength="30" />
|
|
33 |
</td>
|
|
34 |
</tr>
|
|
35 |
<tr style="{DISPLAY_EXTRA}">
|
|
36 |
<td> </td>
|
|
37 |
<td style="font-size: 10px;">
|
|
38 |
{CHANGING_PASSWORD}
|
|
39 |
</td>
|
|
40 |
</tr>
|
|
41 |
<tr>
|
|
42 |
<td>{TEXT_DISPLAY_NAME}:</td>
|
|
43 |
<td class="value_input">
|
|
44 |
<input type="text" name="display_name" maxlength="255" value="{DISPLAY_NAME}" />
|
|
45 |
</td>
|
|
46 |
</tr>
|
|
47 |
<tr>
|
|
48 |
<td>{TEXT_EMAIL}:</td>
|
|
49 |
<td class="value_input">
|
|
50 |
<input type="text" name="email" maxlength="255" value="{EMAIL}" />
|
|
51 |
</td>
|
|
52 |
</tr>
|
|
53 |
<tr style="{DISPLAY_HOME_FOLDERS}">
|
|
54 |
<td>{TEXT_HOME_FOLDER}:</td>
|
|
55 |
<td class="value_input">
|
|
56 |
<select name="home_folder">
|
|
57 |
<option value="">{TEXT_NONE}</option>
|
|
58 |
<!-- BEGIN folder_list_block -->
|
|
59 |
<option value="{FOLDER}"{SELECTED}>{NAME}</option>
|
|
60 |
<!-- END folder_list_block -->
|
|
61 |
</select>
|
|
62 |
</td>
|
|
63 |
</tr>
|
|
64 |
<tr>
|
|
65 |
<td>{TEXT_GROUP}:</td>
|
|
66 |
<td class="value_input">
|
|
67 |
<select name="groups[]" multiple="multiple" size="5">
|
|
68 |
<!-- BEGIN group_list_block -->
|
|
69 |
<option value="{ID}" {SELECTED}>{NAME}</option>
|
|
70 |
<!-- END group_list_block -->
|
|
71 |
</select>
|
|
72 |
</td>
|
|
73 |
</tr>
|
|
74 |
<tr>
|
|
75 |
<td> </td>
|
|
76 |
<td>
|
|
77 |
<input type="radio" name="active[]" id="active" value="1" {ACTIVE_CHECKED} />
|
|
78 |
<label for="active">{TEXT_ACTIVE}</label>
|
|
79 |
<input type="radio" name="active[]" id="disabled" value="0" {DISABLED_CHECKED} />
|
|
80 |
<label for="disabled">{TEXT_DISABLED}</label>
|
|
81 |
</td>
|
|
82 |
</tr>
|
|
83 |
<tr>
|
|
84 |
<td> </td>
|
|
85 |
<td>
|
|
86 |
<input type="submit" name="submit" value="{SUBMIT_TITLE}" />
|
|
87 |
<input type="reset" name="reset" value="{TEXT_RESET}" />
|
|
88 |
</td>
|
|
89 |
</tr>
|
|
90 |
</table>
|
|
91 |
|
|
92 |
</form>
|
|
93 |
|
|
1 |
<!-- BEGIN main_block --> |
|
2 |
|
|
3 |
<script language="javascript" type="text/javascript"> |
|
4 |
function toggle_radio(radio_on, radio_off) { |
|
5 |
document.getElementById(radio_on).checked = true; |
|
6 |
document.getElementById(radio_off).checked = true; |
|
7 |
} |
|
8 |
</script> |
|
9 |
|
|
10 |
<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_USER}</h2> |
|
11 |
|
|
12 |
<form name="user" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}"> |
|
13 |
<input type="hidden" name="user_id" value="{USER_ID}" /> |
|
14 |
<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" /> |
|
15 |
{FTAN} |
|
16 |
<table summary="" cellpadding="5" cellspacing="0" border="0" width="100%">
|
|
17 |
<tr> |
|
18 |
<td width="150">{TEXT_USERNAME}:</td> |
|
19 |
<td class="value_input"> |
|
20 |
<input type="text" name="{USERNAME_FIELDNAME}" maxlength="30" value="{USERNAME}" /> |
|
21 |
</td> |
|
22 |
</tr> |
|
23 |
<tr> |
|
24 |
<td>{TEXT_PASSWORD}:</td> |
|
25 |
<td class="value_input"> |
|
26 |
<input type="password" name="password" maxlength="30" /> |
|
27 |
</td> |
|
28 |
</tr> |
|
29 |
<tr> |
|
30 |
<td>{TEXT_RETYPE_PASSWORD}:</td> |
|
31 |
<td class="value_input"> |
|
32 |
<input type="password" name="password2" maxlength="30" /> |
|
33 |
</td> |
|
34 |
</tr> |
|
35 |
<tr style="{DISPLAY_EXTRA}"> |
|
36 |
<td> </td> |
|
37 |
<td style="font-size: 10px;"> |
|
38 |
{CHANGING_PASSWORD} |
|
39 |
</td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<td>{TEXT_DISPLAY_NAME}:</td> |
|
43 |
<td class="value_input"> |
|
44 |
<input type="text" name="display_name" maxlength="255" value="{DISPLAY_NAME}" /> |
|
45 |
</td> |
|
46 |
</tr> |
|
47 |
<tr> |
|
48 |
<td>{TEXT_EMAIL}:</td> |
|
49 |
<td class="value_input"> |
|
50 |
<input type="text" name="email" maxlength="255" value="{EMAIL}" /> |
|
51 |
</td> |
|
52 |
</tr> |
|
53 |
<tr style="{DISPLAY_HOME_FOLDERS}"> |
|
54 |
<td>{TEXT_HOME_FOLDER}:</td> |
|
55 |
<td class="value_input"> |
|
56 |
<select name="home_folder"> |
|
57 |
<option value="">{TEXT_NONE}</option> |
|
58 |
<!-- BEGIN folder_list_block --> |
|
59 |
<option value="{FOLDER}"{SELECTED}>{NAME}</option> |
|
60 |
<!-- END folder_list_block --> |
|
61 |
</select> |
|
62 |
</td> |
|
63 |
</tr> |
|
64 |
<tr> |
|
65 |
<td>{TEXT_GROUP}:</td> |
|
66 |
<td class="value_input"> |
|
67 |
<select name="groups[]" multiple="multiple" size="5"> |
|
68 |
<!-- BEGIN group_list_block --> |
|
69 |
<option value="{ID}" {SELECTED}>{NAME}</option> |
|
70 |
<!-- END group_list_block --> |
|
71 |
</select> |
|
72 |
</td> |
|
73 |
</tr> |
|
74 |
<tr> |
|
75 |
<td> </td> |
|
76 |
<td> |
|
77 |
<input type="radio" name="active[]" id="active" value="1" {ACTIVE_CHECKED} /> |
|
78 |
<label for="active">{TEXT_ACTIVE}</label> |
|
79 |
<input type="radio" name="active[]" id="disabled" value="0" {DISABLED_CHECKED} /> |
|
80 |
<label for="disabled">{TEXT_DISABLED}</label> |
|
81 |
</td> |
|
82 |
</tr> |
|
83 |
<tr> |
|
84 |
<td> </td> |
|
85 |
<td> |
|
86 |
<input type="submit" name="submit" value="{SUBMIT_TITLE}" /> |
|
87 |
<input type="reset" name="reset" value="{TEXT_RESET}" /> |
|
88 |
</td> |
|
89 |
</tr> |
|
90 |
</table> |
|
91 |
|
|
92 |
</form> |
|
93 |
|
|
94 | 94 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/wb_theme/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 |
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center">
|
|
15 |
<tr>
|
|
16 |
<td width="60" valign="top">
|
|
17 |
<img src="{THEME_URL}/images/logo.png" alt="Logo" />
|
|
18 |
</td>
|
|
19 |
<td width="5"> </td>
|
|
20 |
<td style="font-size: 20px;">
|
|
21 |
<font style="color: #FFF;">{SECTION_FORGOT}</font>
|
|
22 |
</td>
|
|
23 |
</tr>
|
|
24 |
</table>
|
|
25 |
|
|
26 |
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;" class="container">
|
|
27 |
<tr>
|
|
28 |
<td class="content">
|
|
29 |
|
|
30 |
<form name="forgot_pass" action="{ACTION_URL}" method="post">
|
|
31 |
<input type="hidden" name="url" value="{URL}" />
|
|
32 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="500">
|
|
33 |
<tr>
|
|
34 |
<td height="40" align="center" style="color: #{MESSAGE_COLOR}" colspan="2">{MESSAGE}</td>
|
|
35 |
</tr>
|
|
36 |
<tr style="{DISPLAY_FORM}">
|
|
37 |
<td height="10" colspan="2"></td>
|
|
38 |
</tr>
|
|
39 |
<tr style="{DISPLAY_FORM}">
|
|
40 |
<td width="165" height="30" align="right">{TEXT_EMAIL}:</td>
|
|
41 |
<td><input type="text" maxlength="255" name="email" value="{EMAIL}" style="width: 180px;" /></td>
|
|
42 |
</tr>
|
|
43 |
<tr style="{DISPLAY_FORM}" height="30">
|
|
44 |
<td> </td>
|
|
45 |
<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>
|
|
46 |
</tr>
|
|
47 |
<tr style="{DISPLAY_FORM}">
|
|
48 |
<td height="10" colspan="2"></td>
|
|
49 |
</tr>
|
|
50 |
</table>
|
|
51 |
</form>
|
|
52 |
|
|
53 |
<center>
|
|
54 |
<a href="{LOGIN_URL}">{TEXT_NEED_TO_LOGIN}</a>
|
|
55 |
<br />
|
|
56 |
<br />
|
|
57 |
<a href="{WB_URL}">{TEXT_HOME}</a>
|
|
58 |
</center>
|
|
59 |
|
|
60 |
</td>
|
|
61 |
</tr>
|
|
62 |
</table>
|
|
63 |
|
|
64 |
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
|
|
65 |
<tr>
|
|
66 |
<td style="font-size:12px;text-align:center;">
|
|
67 |
<!-- 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. -->
|
|
68 |
<a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a> is released under the
|
|
69 |
<a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
|
|
70 |
<!-- 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. -->
|
|
71 |
</td>
|
|
72 |
</tr>
|
|
73 |
</table>
|
|
74 |
|
|
75 |
</body>
|
|
76 |
</html>
|
|
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 |
<table summary="" cellpadding="0" cellspacing="0" border="0" width="770" align="center">
|
|
15 |
<tr> |
|
16 |
<td width="60" valign="top"> |
|
17 |
<img src="{THEME_URL}/images/logo.png" alt="Logo" /> |
|
18 |
</td> |
|
19 |
<td width="5"> </td> |
|
20 |
<td style="font-size: 20px;"> |
|
21 |
<font style="color: #FFF;">{SECTION_FORGOT}</font> |
|
22 |
</td> |
|
23 |
</tr> |
|
24 |
</table> |
|
25 |
|
|
26 |
<table summary="" cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;" class="container">
|
|
27 |
<tr> |
|
28 |
<td class="content"> |
|
29 |
|
|
30 |
<form name="forgot_pass" action="{ACTION_URL}" method="post"> |
|
31 |
<input type="hidden" name="url" value="{URL}" /> |
|
32 |
<table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="500">
|
|
33 |
<tr> |
|
34 |
<td height="40" align="center" style="color: #{MESSAGE_COLOR}" colspan="2">{MESSAGE}</td> |
|
35 |
</tr> |
|
36 |
<tr style="{DISPLAY_FORM}"> |
|
37 |
<td height="10" colspan="2"></td> |
|
38 |
</tr> |
|
39 |
<tr style="{DISPLAY_FORM}"> |
|
40 |
<td width="165" height="30" align="right">{TEXT_EMAIL}:</td> |
|
41 |
<td><input type="text" maxlength="255" name="email" value="{EMAIL}" style="width: 180px;" /></td> |
|
42 |
</tr> |
|
43 |
<tr style="{DISPLAY_FORM}" height="30"> |
|
44 |
<td> </td> |
|
45 |
<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> |
|
46 |
</tr> |
|
47 |
<tr style="{DISPLAY_FORM}"> |
|
48 |
<td height="10" colspan="2"></td> |
|
49 |
</tr> |
|
50 |
</table> |
|
51 |
</form> |
|
52 |
|
|
53 |
<center> |
|
54 |
<a href="{LOGIN_URL}">{TEXT_NEED_TO_LOGIN}</a> |
|
55 |
<br /> |
|
56 |
<br /> |
|
57 |
<a href="{WB_URL}">{TEXT_HOME}</a> |
|
58 |
</center> |
|
59 |
|
|
60 |
</td> |
|
61 |
</tr> |
|
62 |
</table> |
|
63 |
|
|
64 |
<table summary="" cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
|
|
65 |
<tr> |
|
66 |
<td style="font-size:12px;text-align:center;"> |
|
67 |
<!-- 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. --> |
|
68 |
<a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a> is released under the |
|
69 |
<a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a> |
|
70 |
<!-- 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. --> |
|
71 |
</td> |
|
72 |
</tr> |
|
73 |
</table> |
|
74 |
|
|
75 |
</body> |
|
76 |
</html> |
|
77 | 77 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/wb_theme/templates/start.htt | ||
---|---|---|
1 |
<!-- BEGIN main_block -->
|
|
2 |
|
|
3 |
<table cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
|
|
4 |
<tr>
|
|
5 |
<td colspan="3" align="center">
|
|
6 |
{WELCOME_MESSAGE}. {CURRENT_USER} {DISPLAY_NAME}
|
|
7 |
</td>
|
|
8 |
</tr>
|
|
9 |
<tr style="{DISPLAY_WARNING}">
|
|
10 |
<td colspan="3" align="center" style="color: #FF0000; font-weight: bold;">
|
|
11 |
{WARNING}
|
|
12 |
</td>
|
|
13 |
</tr>
|
|
14 |
<tr>
|
|
15 |
<td align="center" valign="top">
|
|
16 |
|
|
17 |
<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_PAGES}">
|
|
18 |
<tr>
|
|
19 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
20 |
<a href="{ADMIN_URL}/pages/index.php">
|
|
21 |
<img src="{THEME_URL}/icons/pages.png" alt="{PAGES}" />
|
|
22 |
</a>
|
|
23 |
</td>
|
|
24 |
<td class="title">
|
|
25 |
<a href="{ADMIN_URL}/pages/index.php">{PAGES}</a>
|
|
26 |
</td>
|
|
27 |
</tr>
|
|
28 |
<tr>
|
|
29 |
<td class="description">
|
|
30 |
{PAGES_OVERVIEW}
|
|
31 |
</td>
|
|
32 |
</tr>
|
|
33 |
</table>
|
|
34 |
|
|
35 |
<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ADDONS}">
|
|
36 |
<tr>
|
|
37 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
38 |
<a href="{ADMIN_URL}/addons/index.php">
|
|
39 |
<img src="{THEME_URL}/icons/addons.png" alt="{ADDONS}" />
|
|
40 |
</a>
|
|
41 |
</td>
|
|
42 |
<td class="title">
|
|
43 |
<a href="{ADMIN_URL}/addons/index.php">{ADDONS}</a>
|
|
44 |
</td>
|
|
45 |
</tr>
|
|
46 |
<tr>
|
|
47 |
<td class="description">
|
|
48 |
{ADDONS_OVERVIEW}
|
|
49 |
</td>
|
|
50 |
</tr>
|
|
51 |
</table>
|
|
52 |
|
|
53 |
<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_SETTINGS}">
|
|
54 |
<tr>
|
|
55 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
56 |
<a href="{ADMIN_URL}/settings/index.php">
|
|
57 |
<img src="{THEME_URL}/icons/settings.png" alt="{SETTINGS}" />
|
|
58 |
</a>
|
|
59 |
</td>
|
|
60 |
<td class="title">
|
|
61 |
<a href="{ADMIN_URL}/settings/index.php">{SETTINGS}</a>
|
|
62 |
</td>
|
|
63 |
</tr>
|
|
64 |
<tr>
|
|
65 |
<td class="description">
|
|
66 |
{SETTINGS_OVERVIEW}
|
|
67 |
</td>
|
|
68 |
</tr>
|
|
69 |
</table>
|
|
70 |
|
|
71 |
<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ACCESS}">
|
|
72 |
<tr>
|
|
73 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
74 |
<a href="{ADMIN_URL}/access/index.php">
|
|
75 |
<img src="{THEME_URL}/icons/access.png" alt="{ACCESS}" />
|
|
76 |
</a>
|
|
77 |
</td>
|
|
78 |
<td class="title">
|
|
79 |
<a href="{ADMIN_URL}/access/index.php">{ACCESS}</a>
|
|
80 |
</td>
|
|
81 |
</tr>
|
|
82 |
<tr>
|
|
83 |
<td class="description">
|
|
84 |
{ACCESS_OVERVIEW}
|
|
85 |
</td>
|
|
86 |
</tr>
|
|
87 |
</table>
|
|
88 |
|
|
89 |
</td>
|
|
90 |
<td width="15">
|
|
91 |
|
|
92 |
</td>
|
|
93 |
<td align="center" valign="top">
|
|
94 |
|
|
95 |
<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_MEDIA}">
|
|
96 |
<tr>
|
|
97 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
98 |
<a href="{ADMIN_URL}/media/index.php">
|
|
99 |
<img src="{THEME_URL}/icons/media.png" alt="{MEDIA}" />
|
|
100 |
</a>
|
|
101 |
</td>
|
|
102 |
<td class="title">
|
|
103 |
<a href="{ADMIN_URL}/media/index.php">{MEDIA}</a>
|
|
104 |
</td>
|
|
105 |
</tr>
|
|
106 |
<tr>
|
|
107 |
<td class="description">
|
|
108 |
{MEDIA_OVERVIEW}
|
|
109 |
</td>
|
|
110 |
</tr>
|
|
111 |
</table>
|
|
112 |
|
|
113 |
<table cellpadding="0" cellspacing="0" border="0" class="section">
|
|
114 |
<tr>
|
|
115 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
116 |
<a href="{ADMIN_URL}/preferences/index.php">
|
|
117 |
<img src="{THEME_URL}/icons/preferences.png" alt="{PREFERENCES}" />
|
|
118 |
</a>
|
|
119 |
</td>
|
|
120 |
<td class="title">
|
|
121 |
<a href="{ADMIN_URL}/preferences/index.php">{PREFERENCES}</a>
|
|
122 |
</td>
|
|
123 |
</tr>
|
|
124 |
<tr>
|
|
125 |
<td class="description">
|
|
126 |
{PREFERENCES_OVERVIEW}
|
|
127 |
</td>
|
|
128 |
</tr>
|
|
129 |
</table>
|
|
130 |
|
|
131 |
<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ADMINTOOLS}">
|
|
132 |
<tr>
|
|
133 |
<td class="graphic" align="center" valign="middle" rowspan="2">
|
|
134 |
<a href="{ADMIN_URL}/admintools/index.php">
|
|
135 |
<img src="{THEME_URL}/icons/admintools.png" alt="{ADMINTOOLS}" />
|
|
136 |
</a>
|
|
137 |
</td>
|
|
138 |
<td class="title">
|
|
139 |
<a href="{ADMIN_URL}/admintools/index.php">{ADMINTOOLS}</a>
|
|
140 |
</td>
|
|
141 |
</tr>
|
|
142 |
<tr>
|
|
143 |
<td class="description">
|
|
144 |
{ADMINTOOLS_OVERVIEW}
|
|
145 |
</td>
|
|
146 |
</tr>
|
|
147 |
</table>
|
|
148 |
|
|
149 |
</td>
|
|
150 |
</tr>
|
|
151 |
</table>
|
|
152 |
|
|
1 |
<!-- BEGIN main_block --> |
|
2 |
|
|
3 |
<table summary="" cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
|
|
4 |
<tr> |
|
5 |
<td colspan="3" align="center"> |
|
6 |
{WELCOME_MESSAGE}. {CURRENT_USER} {DISPLAY_NAME} |
|
7 |
</td> |
|
8 |
</tr> |
|
9 |
<tr style="{DISPLAY_WARNING}"> |
|
10 |
<td colspan="3" align="center" style="color: #FF0000; font-weight: bold;"> |
|
11 |
{WARNING} |
|
12 |
</td> |
|
13 |
</tr> |
|
14 |
<tr> |
|
15 |
<td align="center" valign="top"> |
|
16 |
|
|
17 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_PAGES}">
|
|
18 |
<tr> |
|
19 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
20 |
<a href="{ADMIN_URL}/pages/index.php"> |
|
21 |
<img src="{THEME_URL}/icons/pages.png" alt="{PAGES}" /> |
|
22 |
</a> |
|
23 |
</td> |
|
24 |
<td class="title"> |
|
25 |
<a href="{ADMIN_URL}/pages/index.php">{PAGES}</a> |
|
26 |
</td> |
|
27 |
</tr> |
|
28 |
<tr> |
|
29 |
<td class="description"> |
|
30 |
{PAGES_OVERVIEW} |
|
31 |
</td> |
|
32 |
</tr> |
|
33 |
</table> |
|
34 |
|
|
35 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ADDONS}">
|
|
36 |
<tr> |
|
37 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
38 |
<a href="{ADMIN_URL}/addons/index.php"> |
|
39 |
<img src="{THEME_URL}/icons/addons.png" alt="{ADDONS}" /> |
|
40 |
</a> |
|
41 |
</td> |
|
42 |
<td class="title"> |
|
43 |
<a href="{ADMIN_URL}/addons/index.php">{ADDONS}</a> |
|
44 |
</td> |
|
45 |
</tr> |
|
46 |
<tr> |
|
47 |
<td class="description"> |
|
48 |
{ADDONS_OVERVIEW} |
|
49 |
</td> |
|
50 |
</tr> |
|
51 |
</table> |
|
52 |
|
|
53 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_SETTINGS}">
|
|
54 |
<tr> |
|
55 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
56 |
<a href="{ADMIN_URL}/settings/index.php"> |
|
57 |
<img src="{THEME_URL}/icons/settings.png" alt="{SETTINGS}" /> |
|
58 |
</a> |
|
59 |
</td> |
|
60 |
<td class="title"> |
|
61 |
<a href="{ADMIN_URL}/settings/index.php">{SETTINGS}</a> |
|
62 |
</td> |
|
63 |
</tr> |
|
64 |
<tr> |
|
65 |
<td class="description"> |
|
66 |
{SETTINGS_OVERVIEW} |
|
67 |
</td> |
|
68 |
</tr> |
|
69 |
</table> |
|
70 |
|
|
71 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ACCESS}">
|
|
72 |
<tr> |
|
73 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
74 |
<a href="{ADMIN_URL}/access/index.php"> |
|
75 |
<img src="{THEME_URL}/icons/access.png" alt="{ACCESS}" /> |
|
76 |
</a> |
|
77 |
</td> |
|
78 |
<td class="title"> |
|
79 |
<a href="{ADMIN_URL}/access/index.php">{ACCESS}</a> |
|
80 |
</td> |
|
81 |
</tr> |
|
82 |
<tr> |
|
83 |
<td class="description"> |
|
84 |
{ACCESS_OVERVIEW} |
|
85 |
</td> |
|
86 |
</tr> |
|
87 |
</table> |
|
88 |
|
|
89 |
</td> |
|
90 |
<td width="15"> |
|
91 |
|
|
92 |
</td> |
|
93 |
<td align="center" valign="top"> |
|
94 |
|
|
95 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_MEDIA}">
|
|
96 |
<tr> |
|
97 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
98 |
<a href="{ADMIN_URL}/media/index.php"> |
|
99 |
<img src="{THEME_URL}/icons/media.png" alt="{MEDIA}" /> |
|
100 |
</a> |
|
101 |
</td> |
|
102 |
<td class="title"> |
|
103 |
<a href="{ADMIN_URL}/media/index.php">{MEDIA}</a> |
|
104 |
</td> |
|
105 |
</tr> |
|
106 |
<tr> |
|
107 |
<td class="description"> |
|
108 |
{MEDIA_OVERVIEW} |
|
109 |
</td> |
|
110 |
</tr> |
|
111 |
</table> |
|
112 |
|
|
113 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section">
|
|
114 |
<tr> |
|
115 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
116 |
<a href="{ADMIN_URL}/preferences/index.php"> |
|
117 |
<img src="{THEME_URL}/icons/preferences.png" alt="{PREFERENCES}" /> |
|
118 |
</a> |
|
119 |
</td> |
|
120 |
<td class="title"> |
|
121 |
<a href="{ADMIN_URL}/preferences/index.php">{PREFERENCES}</a> |
|
122 |
</td> |
|
123 |
</tr> |
|
124 |
<tr> |
|
125 |
<td class="description"> |
|
126 |
{PREFERENCES_OVERVIEW} |
|
127 |
</td> |
|
128 |
</tr> |
|
129 |
</table> |
|
130 |
|
|
131 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ADMINTOOLS}">
|
|
132 |
<tr> |
|
133 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
|
134 |
<a href="{ADMIN_URL}/admintools/index.php"> |
|
135 |
<img src="{THEME_URL}/icons/admintools.png" alt="{ADMINTOOLS}" /> |
|
136 |
</a> |
|
137 |
</td> |
|
138 |
<td class="title"> |
|
139 |
<a href="{ADMIN_URL}/admintools/index.php">{ADMINTOOLS}</a> |
|
140 |
</td> |
|
141 |
</tr> |
|
142 |
<tr> |
|
143 |
<td class="description"> |
|
144 |
{ADMINTOOLS_OVERVIEW} |
|
145 |
</td> |
|
146 |
</tr> |
|
147 |
</table> |
|
148 |
|
|
149 |
</td> |
|
150 |
</tr> |
|
151 |
</table> |
|
152 |
|
|
153 | 153 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/wb_theme/templates/templates.htt | ||
---|---|---|
1 |
<!-- BEGIN main_block -->
|
|
2 |
|
|
3 |
<div class="box">
|
|
4 |
{URL_MODULES} {URL_LANGUAGES}
|
|
5 |
</div>
|
|
6 |
|
|
7 |
<br />
|
|
8 |
{CHANGE_TEMPLATE_NOTICE}<br /><br />
|
|
9 |
|
|
10 |
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
|
|
11 |
{FTAN}
|
|
12 |
|
|
13 |
<h2>{HEADING_INSTALL_TEMPLATE}</h2>
|
|
14 |
|
|
15 |
<table cellpadding="2" cellspacing="0" border="0" width="100%">
|
|
16 |
<tr>
|
|
17 |
<td>
|
|
18 |
<input type="file" name="userfile" size="82%" />
|
|
19 |
<script language="javascript" type="text/javascript">
|
|
20 |
document.install.userfile.focus();
|
|
21 |
</script>
|
|
22 |
</td>
|
|
23 |
<td width="110" align="left">
|
|
24 |
<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
|
|
25 |
</td>
|
|
26 |
</tr>
|
|
27 |
</table>
|
|
28 |
|
|
29 |
<br />
|
|
30 |
|
|
31 |
</form>
|
|
32 |
|
|
33 |
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
|
|
34 |
{FTAN}
|
|
35 |
|
|
36 |
<h2>{HEADING_UNINSTALL_TEMPLATE}</h2>
|
|
37 |
|
|
38 |
<table cellpadding="2" cellspacing="0" border="0" width="100%">
|
|
39 |
<tr>
|
|
40 |
<td>
|
|
41 |
<select name="file" style="width: 97%;">
|
|
42 |
<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
|
|
43 |
<!-- BEGIN template_list_block -->
|
|
44 |
<option value="{VALUE}">{NAME}</option>
|
|
45 |
<!-- END template_list_block -->
|
|
46 |
</select>
|
|
47 |
</td>
|
|
48 |
<td width="110">
|
|
49 |
<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
|
|
50 |
</td>
|
|
51 |
</tr>
|
|
52 |
</table>
|
|
53 |
|
|
54 |
<br />
|
|
55 |
|
|
56 |
</form>
|
|
57 |
|
|
58 |
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
|
|
59 |
{FTAN}
|
|
60 |
|
|
61 |
<h2>{HEADING_TEMPLATE_DETAILS}</h2>
|
|
62 |
|
|
63 |
<table cellpadding="2" cellspacing="0" border="0" width="100%">
|
|
64 |
<tr>
|
|
65 |
<td>
|
|
66 |
<select name="file" style="width: 97%;">
|
|
67 |
<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
|
|
68 |
<!-- BEGIN template_list_block -->
|
|
69 |
<option value="{VALUE}">{NAME}</option>
|
|
70 |
<!-- END template_list_block -->
|
|
71 |
</select>
|
|
72 |
</td>
|
|
73 |
<td width="110">
|
|
74 |
<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
|
|
75 |
</td>
|
|
76 |
</tr>
|
|
77 |
</table>
|
|
78 |
|
|
79 |
<br />
|
|
80 |
</form>
|
|
81 |
|
|
1 |
<!-- BEGIN main_block --> |
|
2 |
|
|
3 |
<div class="box"> |
|
4 |
{URL_MODULES} {URL_LANGUAGES} |
|
5 |
</div> |
|
6 |
|
|
7 |
<br /> |
|
8 |
{CHANGE_TEMPLATE_NOTICE}<br /><br /> |
|
9 |
|
|
10 |
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}"> |
|
11 |
{FTAN} |
|
12 |
|
|
13 |
<h2>{HEADING_INSTALL_TEMPLATE}</h2> |
|
14 |
|
|
15 |
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
|
|
16 |
<tr> |
|
17 |
<td> |
|
18 |
<input type="file" name="userfile" size="82%" /> |
|
19 |
<script language="javascript" type="text/javascript"> |
|
20 |
document.install.userfile.focus(); |
|
21 |
</script> |
|
22 |
</td> |
|
23 |
<td width="110" align="left"> |
|
24 |
<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" /> |
|
25 |
</td> |
|
26 |
</tr> |
|
27 |
</table> |
|
28 |
|
|
29 |
<br /> |
|
30 |
|
|
31 |
</form> |
|
32 |
|
|
33 |
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}"> |
|
34 |
{FTAN} |
|
35 |
|
|
36 |
<h2>{HEADING_UNINSTALL_TEMPLATE}</h2> |
|
37 |
|
|
38 |
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
|
|
39 |
<tr> |
|
40 |
<td> |
|
41 |
<select name="file" style="width: 97%;"> |
|
42 |
<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option> |
|
43 |
<!-- BEGIN template_list_block --> |
|
44 |
<option value="{VALUE}">{NAME}</option> |
|
45 |
<!-- END template_list_block --> |
|
46 |
</select> |
|
47 |
</td> |
|
48 |
<td width="110"> |
|
49 |
<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" /> |
|
50 |
</td> |
|
51 |
</tr> |
|
52 |
</table> |
|
53 |
|
|
54 |
<br /> |
|
55 |
|
|
56 |
</form> |
|
57 |
|
|
58 |
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}"> |
|
59 |
{FTAN} |
|
60 |
|
|
61 |
<h2>{HEADING_TEMPLATE_DETAILS}</h2> |
|
62 |
|
|
63 |
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
|
|
64 |
<tr> |
|
65 |
<td> |
|
66 |
<select name="file" style="width: 97%;"> |
|
67 |
<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option> |
|
68 |
<!-- BEGIN template_list_block --> |
|
69 |
<option value="{VALUE}">{NAME}</option> |
|
70 |
<!-- END template_list_block --> |
|
71 |
</select> |
|
72 |
</td> |
|
73 |
<td width="110"> |
|
74 |
<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" /> |
|
75 |
</td> |
|
76 |
</tr> |
|
77 |
</table> |
|
78 |
|
|
79 |
<br /> |
|
80 |
</form> |
|
81 |
|
|
82 | 82 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/wb_theme/templates/settings.htt | ||
---|---|---|
4 | 4 |
<input type="hidden" name="advanced" value="{ADVANCED}" /> |
5 | 5 |
{FTAN} |
6 | 6 |
|
7 |
<table cellpadding="3" cellspacing="0" border="0" align="center" width="100%" class="settings_table"> |
|
7 |
<table summary="" cellpadding="3" cellspacing="0" border="0" align="center" width="100%" class="settings_table">
|
|
8 | 8 |
<tr> |
9 | 9 |
<td colspan="3"> |
10 | 10 |
<h2>{HEADING_GENERAL_SETTINGS}</h2> |
... | ... | |
427 | 427 |
<tr{DISPLAY_ADVANCED}> |
428 | 428 |
<td class="setting_name"><div id="{ADVANCED_FILE_PERMS_ID}1" style="margin: 0; padding: 0;">{TEXT_FILESYSTEM_PERMISSIONS}:</div></td> |
429 | 429 |
<td class="setting_value" id="file_mode" align="left"> |
430 |
<table cellpadding="2" cellspacing="0" border="0" width="100%" style="border-right: 1px solid #DDDDDD;" id="{ADVANCED_FILE_PERMS_ID}2"> |
|
430 |
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%" style="border-right: 1px solid #DDDDDD;" id="{ADVANCED_FILE_PERMS_ID}2">
|
|
431 | 431 |
<tr> |
432 | 432 |
<td colspan="3" style="text-align: center; font-weight: bold;"> |
433 | 433 |
{TEXT_FILES}: |
... | ... | |
473 | 473 |
</table> |
474 | 474 |
</td> |
475 | 475 |
<td class="setting_value" id="dir_mode" style="text-align: right;"> |
476 |
<table cellpadding="2" cellspacing="0" border="0" width="100%" id="{ADVANCED_FILE_PERMS_ID}3"> |
|
476 |
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%" id="{ADVANCED_FILE_PERMS_ID}3">
|
|
477 | 477 |
<tr> |
478 | 478 |
<td colspan="3" style="text-align: center; font-weight: bold;"> |
479 | 479 |
{TEXT_DIRECTORIES}: |
branches/2.8.x/wb/templates/wb_theme/templates/media_browse.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>Browse Media</title> |
|
6 |
<link href="{THEME_URL}/media.css" rel="stylesheet" type="text/css" /> |
|
7 |
<link href="{THEME_URL}/jquery/plugins/fancybox/fancybox.css" rel="stylesheet" type="text/css" /> |
|
8 |
<script type="text/javascript"> |
|
9 |
function confirm_link(message, url) { |
|
10 |
if(confirm(message)) location.href = url; |
|
11 |
} |
|
12 |
</script> |
|
13 |
|
|
14 |
<script src="{INCLUDE_PATH}/jquery/jquery-min.js" type="text/javascript"></script> |
|
15 |
<script src="{THEME_URL}/jquery/jquery-fixedheader.js" type="text/javascript"></script> |
|
16 |
<script src="{THEME_URL}/jquery/plugins/fancybox/jquery-fancybox.js" type="text/javascript"></script> |
|
17 |
<script src="{THEME_URL}/jquery/jquery-metadata.js" type="text/javascript"></script> |
|
18 |
|
|
19 |
<script language="javascript" type="text/javascript"> |
|
20 |
$(document).ready(function(){ |
|
21 |
$("#browser").fixedHeader({ |
|
22 |
width: '100%', height: 355 |
|
23 |
}); |
|
24 |
|
|
25 |
$("table#browser a.preview").fancybox({ |
|
26 |
'hideOnContentClick': true, |
|
27 |
'overlayShow': true, |
|
28 |
'zoomSpeedIn': 0, |
|
29 |
'zoomSpeedOut': 0 |
|
30 |
}); |
|
31 |
}) |
|
32 |
</script> |
|
33 |
|
|
34 |
</head> |
|
35 |
<body onload="parent.document.create.target.value = '{MEDIA_DIRECTORY}{CURRENT_DIR}'; parent.document.upload.target.value = '{MEDIA_DIRECTORY}{CURRENT_DIR}';"> |
|
36 |
<table cellpadding="4" cellspacing="0" border="0" width="100%" class="browse_header"> |
|
37 |
<tr> |
|
38 |
<td align="left" width="100"> |
|
39 |
<a href="{PARENT_DIR_LINK}"> |
|
40 |
<img src="{THEME_URL}/images/up_folder_16.png" border="0" class="{DISPLAY_UP_ARROW}" alt="^" align="absmiddle" /> |
|
41 |
</a> |
|
42 |
<a href="{PARENT_DIR_LINK}" class="{DISPLAY_UP_ARROW}"> |
|
43 |
{TEXT_UP} |
|
44 |
</a> |
|
45 |
</td> |
|
46 |
<td align="center"> |
|
47 |
{TEXT_CURRENT_FOLDER}: {MEDIA_DIRECTORY}{CURRENT_DIR} |
|
48 |
</td> |
|
49 |
<td align="right" width="100" > |
|
50 |
<a href="browse.php?dir={CURRENT_DIR}"> |
|
51 |
<img src="{THEME_URL}/images/reload_16.png" border="0" alt="" align="absmiddle" /> |
|
52 |
</a> |
|
53 |
<a id="reload" href="browse.php?dir={CURRENT_DIR}"> |
|
54 |
{TEXT_RELOAD} |
|
55 |
</a> |
|
56 |
</td> |
|
57 |
</tr> |
|
58 |
</table> |
|
59 |
|
|
60 |
<table id="browser" cellpadding="4" cellspacing="0" border="0" width="100%" class="{DISPLAY_LIST_TABLE}"> |
|
61 |
<thead> |
|
62 |
<tr style="background-color: #EEE;"> |
|
63 |
<th width="18" class="headline">{TEXT_TYPE}</th> |
|
64 |
<th align="left" class="headline">{TEXT_NAME}</th> |
|
65 |
<th align="right" width="80" class="headline">{TEXT_SIZE}</th> |
|
66 |
<th align="right" width="80" class="headline">{TEXT_DATE}</th> |
|
67 |
<th align="right" width="40" class="headline">{TEXT_RENAME}</th> |
|
68 |
<th align="right" width="40" class="headline">{TEXT_DELETE}</th> |
|
69 |
</tr> |
|
70 |
</thead> |
|
71 |
<tbody> |
|
72 |
<!-- BEGIN list_block --> |
|
73 |
<tr style="background-color: #{ROW_BG_COLOR}" onmouseover="this.style.backgroundColor = '#F1F8DD'" onmouseout="this.style.backgroundColor = '#{ROW_BG_COLOR}'"> |
|
74 |
<td style="padding-left: 10px;"> |
|
75 |
<img src="{FILETYPE_ICON}" class="{DISPLAY_ICON}" border="0" alt="" /> |
|
76 |
</td> |
|
77 |
<td> |
|
78 |
<a href="{LINK}" target="{LINK_TARGET}" class="{PREVIEW}"> |
|
79 |
{NAME} |
|
80 |
</a> |
|
81 |
</td> |
|
82 |
<td align="right" style="font-size: 10px;">{SIZE}</td> |
|
83 |
<td align="right" style="font-size: 10px;">{DATE}</td> |
|
84 |
<td align="right" class="{DISPLAY_RENAME}"> |
|
85 |
<a href="rename.php?dir={CURRENT_DIR}&id={TEMP_ID}" title="{TEXT_RENAME}"> |
|
86 |
<img src="{THEME_URL}/images/modify_16.png" alt="" border="0" /> |
|
87 |
</a> |
|
88 |
</td> |
|
89 |
<td style="padding-right: 5px;" align="right" class="{DISPLAY_DELETE}"> |
|
90 |
<a href="#" onclick="javascript: confirm_link('{CONFIRM_DELETE}\n {NAME_SLASHED}', 'delete.php?dir={CURRENT_DIR}&id={TEMP_ID}');" title="{TEXT_DELETE}"> |
|
91 |
<img src="{THEME_URL}/images/delete_16.png" alt="" border="0" /> |
|
92 |
</a> |
|
93 |
</td> |
|
94 |
</tr> |
|
95 |
<!-- END list_block --> |
|
96 |
</table> |
|
97 |
|
|
98 |
<span class="{DISPLAY_NONE_FOUND}"> |
|
99 |
<br /> |
|
100 |
|
|
101 |
{NONE_FOUND} |
|
102 |
</span> |
|
103 |
|
|
104 |
</body> |
|
105 |
</html> |
|
106 |
|
|
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>Browse Media</title> |
|
6 |
<link href="{THEME_URL}/media.css" rel="stylesheet" type="text/css" /> |
|
7 |
<link href="{THEME_URL}/jquery/plugins/fancybox/fancybox.css" rel="stylesheet" type="text/css" /> |
|
8 |
<script type="text/javascript"> |
|
9 |
function confirm_link(message, url) { |
|
10 |
if(confirm(message)) location.href = url; |
|
11 |
} |
|
12 |
</script> |
|
13 |
|
|
14 |
<script src="{INCLUDE_PATH}/jquery/jquery-min.js" type="text/javascript"></script> |
|
15 |
<script src="{THEME_URL}/jquery/jquery-fixedheader.js" type="text/javascript"></script> |
|
16 |
<script src="{THEME_URL}/jquery/plugins/fancybox/jquery-fancybox.js" type="text/javascript"></script> |
|
17 |
<script src="{THEME_URL}/jquery/jquery-metadata.js" type="text/javascript"></script> |
|
18 |
|
|
19 |
<script language="javascript" type="text/javascript"> |
|
20 |
$(document).ready(function(){ |
|
21 |
$("#browser").fixedHeader({ |
|
22 |
width: '100%', height: 355 |
|
23 |
}); |
|
24 |
|
|
25 |
$("table#browser a.preview").fancybox({ |
|
26 |
'hideOnContentClick': true, |
|
27 |
'overlayShow': true, |
|
28 |
'zoomSpeedIn': 0, |
|
29 |
'zoomSpeedOut': 0 |
|
30 |
}); |
|
31 |
}) |
|
32 |
</script> |
|
33 |
|
|
34 |
</head> |
|
35 |
<body onload="parent.document.create.target.value = '{MEDIA_DIRECTORY}{CURRENT_DIR}'; parent.document.upload.target.value = '{MEDIA_DIRECTORY}{CURRENT_DIR}';"> |
|
36 |
<table summary="" cellpadding="4" cellspacing="0" border="0" width="100%" class="browse_header"> |
|
37 |
<tr> |
|
38 |
<td align="left" width="100"> |
|
39 |
<a href="{PARENT_DIR_LINK}"> |
|
40 |
<img src="{THEME_URL}/images/up_folder_16.png" border="0" class="{DISPLAY_UP_ARROW}" alt="^" /> |
|
41 |
</a> |
|
42 |
<a href="{PARENT_DIR_LINK}" class="{DISPLAY_UP_ARROW}"> |
|
43 |
{TEXT_UP} |
|
44 |
</a> |
|
45 |
</td> |
|
46 |
<td align="center"> |
|
47 |
{TEXT_CURRENT_FOLDER}: {MEDIA_DIRECTORY}{CURRENT_DIR} |
|
48 |
</td> |
|
49 |
<td align="right" width="100" > |
|
50 |
<a href="browse.php?dir={CURRENT_DIR}"> |
|
51 |
<img src="{THEME_URL}/images/reload_16.png" border="0" alt="" /> |
|
52 |
</a> |
|
53 |
<a id="reload" href="browse.php?dir={CURRENT_DIR}"> |
|
54 |
{TEXT_RELOAD} |
|
55 |
</a> |
|
56 |
</td> |
|
57 |
</tr> |
|
58 |
</table> |
|
59 |
|
|
60 |
<table summary="" id="browser" cellpadding="4" cellspacing="0" border="0" width="100%" class="{DISPLAY_LIST_TABLE}"> |
|
61 |
<thead> |
|
62 |
<tr style="background-color: #EEE;"> |
|
63 |
<th width="18" class="headline">{TEXT_TYPE}</th> |
|
64 |
<th align="left" class="headline">{TEXT_NAME}</th> |
|
65 |
<th align="right" width="80" class="headline">{TEXT_SIZE}</th> |
|
66 |
<th align="right" width="80" class="headline">{TEXT_DATE}</th> |
|
67 |
<th align="right" width="40" class="headline">{TEXT_RENAME}</th> |
|
68 |
<th align="right" width="40" class="headline">{TEXT_DELETE}</th> |
|
69 |
</tr> |
|
70 |
</thead> |
|
71 |
<tbody> |
|
72 |
<!-- BEGIN list_block --> |
|
73 |
<tr style="background-color: #{ROW_BG_COLOR}" onmouseover="this.style.backgroundColor = '#F1F8DD'" onmouseout="this.style.backgroundColor = '#{ROW_BG_COLOR}'"> |
|
74 |
<td style="padding-left: 10px;"> |
|
75 |
<img src="{FILETYPE_ICON}" class="{DISPLAY_ICON}" border="0" alt="" /> |
|
76 |
</td> |
|
77 |
<td> |
|
78 |
<a href="{LINK}" target="{LINK_TARGET}" class="{PREVIEW}"> |
|
79 |
{NAME} |
|
80 |
</a> |
|
81 |
</td> |
|
82 |
<td align="right" style="font-size: 10px;">{SIZE}</td> |
|
83 |
<td align="right" style="font-size: 10px;">{DATE}</td> |
|
84 |
<td align="right" class="{DISPLAY_RENAME}"> |
|
85 |
<a href="rename.php?dir={CURRENT_DIR}&id={TEMP_ID}" title="{TEXT_RENAME}"> |
|
86 |
<img src="{THEME_URL}/images/modify_16.png" alt="" border="0" /> |
|
87 |
</a> |
|
88 |
</td> |
|
89 |
<td style="padding-right: 5px;" align="right" class="{DISPLAY_DELETE}"> |
|
90 |
<a href="#" onclick="javascript: confirm_link('{CONFIRM_DELETE}\n {NAME_SLASHED}', 'delete.php?dir={CURRENT_DIR}%26id={TEMP_ID}');" title="{TEXT_DELETE}"> |
|
91 |
<img src="{THEME_URL}/images/delete_16.png" alt="" border="0" /> |
|
92 |
</a> |
|
93 |
</td> |
|
94 |
</tr> |
|
95 |
<!-- END list_block --> |
|
96 |
</tbody> |
|
97 |
</table> |
|
98 |
|
|
99 |
<span class="{DISPLAY_NONE_FOUND}"> |
|
100 |
<br /> |
|
101 |
|
|
102 |
{NONE_FOUND} |
|
103 |
</span> |
|
104 |
|
|
105 |
</body> |
|
106 |
</html> |
|
107 |
|
|
107 | 108 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/wb_theme/templates/users.htt | ||
---|---|---|
4 | 4 |
|
5 | 5 |
<input type="hidden" name="action" value="delete" /> |
6 | 6 |
|
7 |
<table cellpadding="0" cellspacing="0" border="0" width="100%"> |
|
7 |
<table summary="" cellpadding="0" cellspacing="0" border="0" width="100%">
|
|
8 | 8 |
<tr> |
9 | 9 |
<td align="left"> |
10 | 10 |
<h2>{HEADING_MODIFY_DELETE_USER}</h2> |
branches/2.8.x/wb/templates/wb_theme/templates/access.htt | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 | 2 |
|
3 |
<table cellpadding="0" cellspacing="0" border="0" width="99%" align="center"> |
|
3 |
<table summary="" cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
|
|
4 | 4 |
<tr> |
5 | 5 |
<td align="center" valign="top"> |
6 | 6 |
<!-- BEGIN users_block --> |
7 |
<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_USERS} > |
|
7 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_USERS} >
|
|
8 | 8 |
<tr> |
9 | 9 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
10 | 10 |
<a href="{ADMIN_URL}/users/index.php"> |
... | ... | |
23 | 23 |
</table> |
24 | 24 |
<!-- END users_block --> |
25 | 25 |
<!-- BEGIN groups_block --> |
26 |
<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_GROUPS} > |
|
26 |
<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_GROUPS} >
|
|
27 | 27 |
<tr> |
28 | 28 |
<td class="graphic" align="center" valign="middle" rowspan="2"> |
29 | 29 |
<a href="{ADMIN_URL}/groups/index.php"> |
branches/2.8.x/wb/templates/wb_theme/templates/groups_form.htt | ||
---|---|---|
1 |
<!-- BEGIN main_block --> |
|
2 |
|
|
3 |
<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_GROUP}</h2> |
|
4 |
|
|
5 |
<form name="group" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}"> |
|
6 |
<input type="hidden" name="advanced" value="{ADVANCED}" /> |
|
7 |
<input type="hidden" name="group_id" value="{GROUP_ID}" /> |
|
8 |
{FTAN} |
|
9 |
<table cellpadding="5" cellspacing="0" border="0" width="100%"> |
|
10 |
<tr> |
|
11 |
<td width="152">{TEXT_NAME}:</td> |
|
12 |
<td> |
|
13 |
<input type="text" name="group_name" maxlength="255" value="{GROUP_NAME}" style="width: 100%" /> |
|
14 |
</td> |
|
15 |
</tr> |
|
16 |
</table> |
|
17 |
<table cellpadding="5" cellspacing="0" border="0" width="100%" style="{DISPLAY_BASIC}"> |
|
18 |
<tr> |
|
19 |
<td width="150" valign="top">{TEXT_SYSTEM_PERMISSIONS}:</td> |
|
20 |
<td> |
|
21 |
<table cellpadding="0" cellspacing="0" width="100%" border="0"> |
|
22 |
<tr> |
|
23 |
<td> |
|
24 |
<input type="checkbox" name="pages" id="pages" value="1" {pages_checked} /> |
|
25 |
<label for="pages">{SECTION_PAGES}</label> |
|
26 |
</td> |
|
27 |
<td> |
|
28 |
<input type="checkbox" name="media" id="media" value="1" {media_checked} /> |
|
29 |
<label for="media">{SECTION_MEDIA}</label> |
|
30 |
</td> |
|
31 |
<td> |
|
32 |
<input type="checkbox" name="modules" id="modules" value="1" {modules_checked} /> |
|
33 |
<label for="modules">{SECTION_MODULES}</label> |
|
34 |
</td> |
|
35 |
<td> |
|
36 |
<input type="checkbox" name="templates" id="templates" value="1" {templates_checked} /> |
|
37 |
<label for="templates">{SECTION_TEMPLATES}</label> |
|
38 |
</td> |
|
39 |
</tr> |
|
40 |
<tr> |
|
41 |
<td> |
|
42 |
<input type="checkbox" name="languages" id="languages" value="1" {languages_checked} /> |
|
43 |
<label for="languages">{SECTION_LANGUAGES}</label> |
|
44 |
</td> |
|
45 |
<td> |
|
46 |
<input type="checkbox" name="settings" id="settings" value="1" {settings_checked} /> |
|
47 |
<label for="settings">{SECTION_SETTINGS}</label> |
|
48 |
</td> |
|
49 |
<td> |
|
50 |
<input type="checkbox" name="users" id="users" value="1" {users_checked} /> |
|
51 |
<label for="users">{SECTION_USERS}</label> |
|
52 |
</td> |
|
53 |
<td> |
|
54 |
<input type="checkbox" name="groups" id="groups" value="1" {groups_checked} /> |
|
55 |
<label for="groups">{SECTION_GROUPS}</label> |
|
56 |
</td> |
|
57 |
</tr> |
|
58 |
<tr> |
|
59 |
<td> |
|
60 |
<input type="checkbox" name="admintools" id="admintools" value="1" {admintools_checked} /> |
|
61 |
<label for="admintools">{SECTION_ADMINTOOLS}</label> |
|
62 |
</td> |
|
63 |
<td> </td> |
|
64 |
<td> </td> |
|
65 |
<td> </td> |
|
66 |
</tr> |
|
67 |
</table> |
|
68 |
</td> |
|
69 |
</tr> |
|
70 |
</table> |
|
71 |
<table cellpadding="5" cellspacing="0" border="0" width="100%" style="{DISPLAY_ADVANCED}"> |
|
72 |
<tr> |
|
73 |
<td valign="top">{TEXT_SYSTEM_PERMISSIONS}:</td> |
|
74 |
<td align="left"> |
|
75 |
|
|
76 |
|
|
77 |
<table cellpadding="3" cellspacing="0" border="0" width="400"> |
|
78 |
<tr> |
|
79 |
<td colspan="4"> |
|
80 |
<h3>{SECTION_PAGES}</h3> |
|
81 |
</td> |
|
82 |
</tr> |
|
83 |
<tr> |
|
84 |
<td><input name="pages_view" id="pages_view" type="checkbox" value="1" {pages_view_checked} /></td> |
|
85 |
<td><label for="pages_view">{TEXT_VIEW}</label></td> |
|
86 |
<td><input name="pages_add" id="pages_add" type="checkbox" value="1" {pages_add_checked} /></td> |
|
87 |
<td> |
|
88 |
<label for="pages_add">{TEXT_ADD}</label> |
|
89 |
|
|
90 |
<input name="pages_add_l0" id="pages_add_l0" type="checkbox" value="1" {pages_add_l0_checked} /> |
|
91 |
<label for="pages_add_l0">{TEXT_LEVEL} 0</label>) |
|
92 |
</td> |
|
93 |
</tr> |
|
94 |
<tr> |
|
95 |
<td><input name="pages_settings" id="pages_settings" type="checkbox" value="1" {pages_settings_checked} /></td> |
|
96 |
<td><label for="pages_settings">{TEXT_MODIFY_SETTINGS}</label></td> |
|
97 |
<td><input name="pages_modify" id="pages_modify" type="checkbox" value="1" {pages_modify_checked} /></td> |
|
98 |
<td><label for="pages_modify">{TEXT_MODIFY_CONTENT}</label></td> |
|
99 |
</tr> |
|
100 |
<tr> |
|
101 |
<td><input name="pages_intro" id="pages_intro" type="checkbox" value="1" {pages_intro_checked} /></td> |
|
102 |
<td><label for="pages_intro">{HEADING_MODIFY_INTRO_PAGE}</label></td> |
|
103 |
<td><input name="pages_delete" id="pages_delete" type="checkbox" value="1" {pages_delete_checked} /></td> |
|
104 |
<td><label for="pages_delete">{TEXT_DELETE}</label></td> |
|
105 |
</tr> |
|
106 |
<tr> |
|
107 |
<td colspan="4"> |
|
108 |
<h3>{SECTION_MEDIA}</h3> |
|
109 |
</td> |
|
110 |
</tr> |
|
111 |
<tr> |
|
112 |
<td><input name="media_view" id="media_view" type="checkbox" value="1" {media_view_checked} /></td> |
|
113 |
<td><label for="media_view">{TEXT_VIEW}</label></td> |
|
114 |
<td><input name="media_upload" id="media_upload" type="checkbox" value="1" {media_upload_checked} /></td> |
|
115 |
<td><label for="media_upload">{TEXT_UPLOAD_FILES}</label></td> |
|
116 |
</tr> |
|
117 |
<tr> |
|
118 |
<td><input name="media_rename" id="media_rename" type="checkbox" value="1" {media_rename_checked} /></td> |
|
119 |
<td><label for="media_rename">{TEXT_RENAME}</label></td> |
|
120 |
<td><input name="media_delete" id="media_delete" type="checkbox" value="1" {media_delete_checked} /></td> |
|
121 |
<td><label for="media_delete">{TEXT_DELETE}</label></td> |
|
122 |
</tr> |
|
123 |
<tr> |
|
124 |
<td><input name="media_create" id="media_create" type="checkbox" value="1" {media_create_checked} /></td> |
|
125 |
<td><label for="media_create">{TEXT_CREATE_FOLDER}</label></td> |
|
126 |
<td> </td> |
|
127 |
<td> </td> |
|
128 |
</tr> |
|
129 |
<tr> |
|
130 |
<td colspan="4"> |
|
131 |
<h3>{SECTION_MODULES}</h3> |
|
132 |
</td> |
|
133 |
</tr> |
|
134 |
<tr> |
|
135 |
<td><input name="modules_view" id="modules_view" type="checkbox" value="1" {modules_view_checked} /></td> |
|
136 |
<td><label for="modules_view">{TEXT_VIEW}</label></td> |
|
137 |
<td><input name="modules_install" id="modules_install" type="checkbox" value="1" {modules_install_checked} /></td> |
|
138 |
<td><label for="modules_install">{TEXT_ADD}</label></td> |
|
139 |
</tr> |
|
140 |
<tr> |
|
141 |
<td><input name="modules_uninstall" id="modules_uninstall" type="checkbox" value="1" {modules_uninstall_checked} /></td> |
|
142 |
<td><label for="modules_uninstall">{TEXT_DELETE}</label></td> |
|
143 |
<td> </td> |
|
144 |
<td> </td> |
|
145 |
</tr> |
|
146 |
<tr> |
|
147 |
<td colspan="4"> |
|
148 |
<h3>{SECTION_TEMPLATES}</h3> |
|
149 |
</td> |
|
150 |
</tr> |
|
151 |
<tr> |
|
152 |
<td><input name="templates_view" id="templates_view" type="checkbox" value="1" {templates_view_checked} /></td> |
|
153 |
<td><label for="templates_view">{TEXT_VIEW}</label></td> |
|
154 |
<td><input name="templates_install" id="templates_install" type="checkbox" value="1" {templates_install_checked} /></td> |
|
155 |
<td><label for="templates_install">{TEXT_ADD}</label></td> |
|
156 |
</tr> |
|
157 |
<tr> |
|
158 |
<td><input name="templates_uninstall" id="templates_uninstall" type="checkbox" value="1" {templates_uninstall_checked} /></td> |
|
159 |
<td><label for="templates_uninstall">{TEXT_DELETE}</label></td> |
|
160 |
<td> </td> |
|
161 |
<td> </td> |
|
162 |
</tr> |
|
163 |
<tr> |
|
164 |
<td colspan="4"> |
|
165 |
<h3>{SECTION_LANGUAGES}</h3> |
|
166 |
</td> |
|
167 |
</tr> |
|
168 |
<tr> |
|
169 |
<td><input name="languages_view" id="languages_view" type="checkbox" value="1" {languages_view_checked} /></td> |
|
170 |
<td><label for="languages_view">{TEXT_VIEW}</label></td> |
|
171 |
<td><input name="languages_install" id="languages_install" type="checkbox" value="1" {languages_install_checked} /></td> |
|
172 |
<td><label for="languages_install">{TEXT_ADD}</label></td> |
|
173 |
</tr> |
|
174 |
<tr> |
|
175 |
<td><input name="languages_uninstall" id="languages_uninstall" type="checkbox" value="1" {languages_uninstall_checked} /></td> |
|
176 |
<td><label for="languages_uninstall">{TEXT_DELETE}</label></td> |
|
177 |
<td> </td> |
|
178 |
<td> </td> |
|
179 |
</tr> |
|
180 |
<tr> |
|
181 |
<td colspan="4"> |
|
182 |
<h3>{SECTION_SETTINGS}</h3> |
|
183 |
</td> |
|
184 |
</tr> |
|
185 |
<tr> |
|
186 |
<td><input name="settings_basic" id="settings_basic" type="checkbox" value="1" {settings_basic_checked} /></td> |
|
187 |
<td><label for="settings_basic">{TEXT_BASIC}</label></td> |
|
188 |
<td><input name="settings_advanced" id="settings_advanced" type="checkbox" value="1" {settings_advanced_checked} /></td> |
|
189 |
<td><label for="settings_advanced">{TEXT_ADVANCED}</label></td> |
|
190 |
</tr> |
|
191 |
<tr> |
|
192 |
<td colspan="4"> |
|
193 |
<h3>{SECTION_USERS}</h3> |
|
194 |
</td> |
|
195 |
</tr> |
|
196 |
<tr> |
|
197 |
<td><input name="users_view" id="users_view" type="checkbox" value="1" {users_view_checked} /></td> |
|
198 |
<td><label for="users_view">{TEXT_VIEW}</label></td> |
|
199 |
<td><input name="users_add" id="users_add" type="checkbox" value="1" {users_add_checked} /></td> |
|
200 |
<td><label for="users_add">{TEXT_ADD}</label></td> |
|
201 |
</tr> |
|
202 |
<tr> |
|
203 |
<td><input name="users_modify" id="users_modify" type="checkbox" value="1" {users_modify_checked} /></td> |
|
204 |
<td><label for="users_modify">{TEXT_MODIFY}</label></td> |
|
205 |
<td><input name="users_delete" id="users_delete" type="checkbox" value="1" {users_delete_checked} /></td> |
|
206 |
<td><label for="users_delete">{TEXT_DELETE}</label></td> |
|
207 |
</tr> |
|
208 |
<tr> |
|
209 |
<td colspan="4"> |
|
210 |
<h3>{SECTION_GROUPS}</h3> |
|
211 |
</td> |
|
212 |
</tr> |
|
213 |
<tr> |
|
214 |
<td><input name="groups_view" id="groups_view" type="checkbox" value="1" {groups_view_checked} /></td> |
|
215 |
<td><label for="groups_view">{TEXT_VIEW}</label></td> |
|
216 |
<td><input name="groups_add" id="groups_add" type="checkbox" value="1" {groups_add_checked} /></td> |
|
217 |
<td><label for="groups_add">{TEXT_ADD}</label></td> |
|
218 |
</tr> |
|
219 |
<tr> |
|
220 |
<td><input name="groups_modify" id="groups_modify" type="checkbox" value="1" {groups_modify_checked} /></td> |
|
221 |
<td><label for="groups_modify">{TEXT_MODIFY}</label></td> |
|
222 |
<td><input name="groups_delete" id="groups_delete" type="checkbox" value="1" {groups_delete_checked} /></td> |
|
223 |
<td><label for="groups_delete">{TEXT_DELETE}</label></td> |
|
224 |
</tr> |
|
225 |
<tr> |
|
226 |
<td colspan="4"> |
|
227 |
<h3>{SECTION_ADMINTOOLS}</h3> |
|
228 |
</td> |
|
229 |
</tr> |
|
230 |
<tr> |
|
231 |
<td><input name="admintools_settings" id="admintools_settings" type="checkbox" value="1" {admintools_settings_checked} /></td> |
|
232 |
<td><label for="admintools_settings">{TEXT_MODIFY_SETTINGS}</label></td> |
|
233 |
<td> </td> |
|
234 |
<td> </td> |
|
235 |
</tr> |
|
236 |
</table> |
|
237 |
|
|
238 |
|
|
239 |
</td> |
|
240 |
</tr> |
|
241 |
</table> |
|
242 |
|
|
243 |
<table cellpadding="5" cellspacing="0" border="0" width="100%" style="padding-top: 5px; padding-bottom: 5px;"> |
|
244 |
<tr> |
|
245 |
<td valign="top" align="left" width="150"> |
|
246 |
{TEXT_MODULE_PERMISSIONS}: |
|
247 |
</td> |
|
248 |
<td valign="top" align="left"> |
|
249 |
<ul style="margin: 0; padding: 0; list-style: none;"> |
|
250 |
<!-- BEGIN module_list_block --> |
|
251 |
<li> |
|
252 |
<input type="checkbox" name="module_permissions[]" id="m_{VALUE}" value="{VALUE}" {CHECKED} /> |
|
253 |
<label for="m_{VALUE}">{NAME}</label> |
|
254 |
</li> |
|
255 |
<!-- END module_list_block --> |
|
256 |
</ul> |
|
257 |
</td> |
|
258 |
<td valign="top" align="left" width="150"> |
|
259 |
{TEXT_TEMPLATE_PERMISSIONS}: |
|
260 |
</td> |
|
261 |
<td valign="top" align="left"> |
|
262 |
<ul style="margin: 0; padding: 0; list-style: none;"> |
|
263 |
<!-- BEGIN template_list_block --> |
|
264 |
<li> |
|
265 |
<input type="checkbox" name="template_permissions[]" id="t_{VALUE}" value="{VALUE}" {CHECKED} /> |
|
266 |
<label for="t_{VALUE}">{NAME}</label> |
|
267 |
</li> |
|
268 |
<!-- END template_list_block --> |
|
269 |
</ul> |
|
270 |
</td> |
|
271 |
</tr> |
|
272 |
|
|
273 |
<tr> |
|
274 |
<td colspan="2"><input type="submit" name="submit" value="{SUBMIT_TITLE}" /></td> |
|
275 |
<td colspan="2" align="right"><input type="reset" name="reset" value="{TEXT_RESET}" /></td> |
|
276 |
</tr> |
|
277 |
</table> |
|
278 |
</form> |
|
279 |
|
|
280 |
<table cellpadding="5" cellspacing="0" border="0" width="100%"> |
|
281 |
<tr> |
|
282 |
<td align="center"> |
|
283 |
<form name="advanced" action="{ADVANCED_ACTION}" method="post"> |
|
284 |
<input type="hidden" name="group_id" value="{GROUP_ID}" /> |
|
285 |
<input type="hidden" name="action" value="modify" /> |
|
286 |
{FTAN} |
|
287 |
<input type="submit" name="advanced" onclick="window.location = '{ADVANCED_LINK}';" value="{ADVANCED_BUTTON}" /> |
|
288 |
</form> |
|
289 |
</td> |
|
290 |
</tr> |
|
291 |
</table> |
|
292 |
|
|
293 |
|
|
1 |
<!-- BEGIN main_block --> |
|
2 |
|
|
3 |
<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_GROUP}</h2> |
|
4 |
|
|
5 |
<form name="group" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}"> |
Also available in: Unified diff
validation fixes in wb_theme