Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moodle
moodle
Commits
113efed5
Commit
113efed5
authored
Aug 18, 2016
by
Frederic Massart
Committed by
Dan Poltawski
Sep 23, 2016
Browse files
MDL-51948 admin: Make admin settings RTL friendly
Part of MDL-55071
parent
a47e73ff
Changes
41
Hide whitespace changes
Inline
Side-by-side
admin/phpinfo.php
View file @
113efed5
...
...
@@ -8,7 +8,7 @@
echo
$OUTPUT
->
header
();
echo
'<div class="phpinfo">'
;
echo
'<div class="phpinfo
text-ltr
">'
;
ob_start
();
phpinfo
(
INFO_GENERAL
+
INFO_CONFIGURATION
+
INFO_MODULES
+
INFO_VARIABLES
);
...
...
admin/settings/appearance.php
View file @
113efed5
...
...
@@ -12,7 +12,10 @@ if ($hassiteconfig or has_any_capability($capabilities, $systemcontext)) { // sp
$ADMIN
->
add
(
'appearance'
,
new
admin_category
(
'themes'
,
new
lang_string
(
'themes'
)));
// "themesettings" settingpage
$temp
=
new
admin_settingpage
(
'themesettings'
,
new
lang_string
(
'themesettings'
,
'admin'
));
$temp
->
add
(
new
admin_setting_configtext
(
'themelist'
,
new
lang_string
(
'themelist'
,
'admin'
),
new
lang_string
(
'configthemelist'
,
'admin'
),
''
,
PARAM_NOTAGS
));
$setting
=
new
admin_setting_configtext
(
'themelist'
,
new
lang_string
(
'themelist'
,
'admin'
),
new
lang_string
(
'configthemelist'
,
'admin'
),
''
,
PARAM_NOTAGS
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$setting
=
new
admin_setting_configcheckbox
(
'themedesignermode'
,
new
lang_string
(
'themedesignermode'
,
'admin'
),
new
lang_string
(
'configthemedesignermode'
,
'admin'
),
0
);
$setting
->
set_updatedcallback
(
'theme_reset_all_caches'
);
$temp
->
add
(
$setting
);
...
...
@@ -22,7 +25,8 @@ if ($hassiteconfig or has_any_capability($capabilities, $systemcontext)) { // sp
$temp
->
add
(
new
admin_setting_configcheckbox
(
'allowthemechangeonurl'
,
new
lang_string
(
'allowthemechangeonurl'
,
'admin'
),
new
lang_string
(
'configallowthemechangeonurl'
,
'admin'
),
0
));
$temp
->
add
(
new
admin_setting_configcheckbox
(
'allowuserblockhiding'
,
new
lang_string
(
'allowuserblockhiding'
,
'admin'
),
new
lang_string
(
'configallowuserblockhiding'
,
'admin'
),
1
));
$temp
->
add
(
new
admin_setting_configcheckbox
(
'allowblockstodock'
,
new
lang_string
(
'allowblockstodock'
,
'admin'
),
new
lang_string
(
'configallowblockstodock'
,
'admin'
),
1
));
$temp
->
add
(
new
admin_setting_configtextarea
(
'custommenuitems'
,
new
lang_string
(
'custommenuitems'
,
'admin'
),
new
lang_string
(
'configcustommenuitems'
,
'admin'
),
''
,
PARAM_TEXT
,
'50'
,
'10'
));
$temp
->
add
(
new
admin_setting_configtextarea
(
'custommenuitems'
,
new
lang_string
(
'custommenuitems'
,
'admin'
),
new
lang_string
(
'configcustommenuitems'
,
'admin'
),
''
,
PARAM_RAW
,
'50'
,
'10'
));
$temp
->
add
(
new
admin_setting_configtextarea
(
'customusermenuitems'
,
new
lang_string
(
'customusermenuitems'
,
'admin'
),
...
...
@@ -30,7 +34,7 @@ if ($hassiteconfig or has_any_capability($capabilities, $systemcontext)) { // sp
'grades,grades|/grade/report/mygrades.php|grades
messages,message|/message/index.php|message
preferences,moodle|/user/preferences.php|preferences'
,
PARAM_
TEXT
,
PARAM_
RAW
,
'50'
,
'10'
));
...
...
admin/settings/grades.php
View file @
113efed5
...
...
@@ -58,9 +58,18 @@ if (has_capability('moodle/grade:manage', $systemcontext)
GRADE_NAVMETHOD_TABS
=>
new
lang_string
(
'tabs'
,
'grades'
),
GRADE_NAVMETHOD_COMBO
=>
new
lang_string
(
'combo'
,
'grades'
))));
$temp
->
add
(
new
admin_setting_configtext
(
'grade_export_userprofilefields'
,
new
lang_string
(
'gradeexportuserprofilefields'
,
'grades'
),
new
lang_string
(
'gradeexportuserprofilefields_desc'
,
'grades'
),
'firstname,lastname,idnumber,institution,department,email'
,
PARAM_TEXT
));
$temp
->
add
(
new
admin_setting_configtext
(
'grade_export_customprofilefields'
,
new
lang_string
(
'gradeexportcustomprofilefields'
,
'grades'
),
new
lang_string
(
'gradeexportcustomprofilefields_desc'
,
'grades'
),
''
,
PARAM_TEXT
));
$setting
=
new
admin_setting_configtext
(
'grade_export_userprofilefields'
,
new
lang_string
(
'gradeexportuserprofilefields'
,
'grades'
),
new
lang_string
(
'gradeexportuserprofilefields_desc'
,
'grades'
),
'firstname,lastname,idnumber,institution,department,email'
,
PARAM_TEXT
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$setting
=
new
admin_setting_configtext
(
'grade_export_customprofilefields'
,
new
lang_string
(
'gradeexportcustomprofilefields'
,
'grades'
),
new
lang_string
(
'gradeexportcustomprofilefields_desc'
,
'grades'
),
''
,
PARAM_TEXT
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$temp
->
add
(
new
admin_setting_configcheckbox
(
'recovergradesdefault'
,
new
lang_string
(
'recovergradesdefault'
,
'grades'
),
new
lang_string
(
'recovergradesdefault_help'
,
'grades'
),
0
));
...
...
admin/settings/plugins.php
View file @
113efed5
...
...
@@ -105,12 +105,22 @@ if ($hassiteconfig) {
new
lang_string
(
'forgottenpassword'
,
'auth'
),
''
));
$temp
->
add
(
new
admin_setting_confightmleditor
(
'auth_instructions'
,
new
lang_string
(
'instructions'
,
'auth'
),
new
lang_string
(
'authinstructions'
,
'auth'
),
''
));
$temp
->
add
(
new
admin_setting_configtext
(
'allowemailaddresses'
,
new
lang_string
(
'allowemailaddresses'
,
'admin'
),
new
lang_string
(
'configallowemailaddresses'
,
'admin'
),
''
,
PARAM_NOTAGS
));
$temp
->
add
(
new
admin_setting_configtext
(
'denyemailaddresses'
,
new
lang_string
(
'denyemailaddresses'
,
'admin'
),
new
lang_string
(
'configdenyemailaddresses'
,
'admin'
),
''
,
PARAM_NOTAGS
));
$setting
=
new
admin_setting_configtext
(
'allowemailaddresses'
,
new
lang_string
(
'allowemailaddresses'
,
'admin'
),
new
lang_string
(
'configallowemailaddresses'
,
'admin'
),
''
,
PARAM_NOTAGS
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$setting
=
new
admin_setting_configtext
(
'denyemailaddresses'
,
new
lang_string
(
'denyemailaddresses'
,
'admin'
),
new
lang_string
(
'configdenyemailaddresses'
,
'admin'
),
''
,
PARAM_NOTAGS
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$temp
->
add
(
new
admin_setting_configcheckbox
(
'verifychangedemail'
,
new
lang_string
(
'verifychangedemail'
,
'admin'
),
new
lang_string
(
'configverifychangedemail'
,
'admin'
),
1
));
$temp
->
add
(
new
admin_setting_configtext
(
'recaptchapublickey'
,
new
lang_string
(
'recaptchapublickey'
,
'admin'
),
new
lang_string
(
'configrecaptchapublickey'
,
'admin'
),
''
,
PARAM_NOTAGS
));
$temp
->
add
(
new
admin_setting_configtext
(
'recaptchaprivatekey'
,
new
lang_string
(
'recaptchaprivatekey'
,
'admin'
),
new
lang_string
(
'configrecaptchaprivatekey'
,
'admin'
),
''
,
PARAM_NOTAGS
));
$setting
=
new
admin_setting_configtext
(
'recaptchapublickey'
,
new
lang_string
(
'recaptchapublickey'
,
'admin'
),
new
lang_string
(
'configrecaptchapublickey'
,
'admin'
),
''
,
PARAM_NOTAGS
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$setting
=
new
admin_setting_configtext
(
'recaptchaprivatekey'
,
new
lang_string
(
'recaptchaprivatekey'
,
'admin'
),
new
lang_string
(
'configrecaptchaprivatekey'
,
'admin'
),
''
,
PARAM_NOTAGS
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$ADMIN
->
add
(
'authsettings'
,
$temp
);
$temp
=
new
admin_externalpage
(
'authtestsettings'
,
get_string
(
'testsettings'
,
'core_auth'
),
new
moodle_url
(
"/auth/test_settings.php"
),
'moodle/site:config'
,
true
);
...
...
admin/settings/server.php
View file @
113efed5
...
...
@@ -28,8 +28,12 @@ if ($primaryadmin) {
$primaryadminemail
=
NULL
;
$primaryadminname
=
NULL
;
}
$temp
->
add
(
new
admin_setting_configtext
(
'supportname'
,
new
lang_string
(
'supportname'
,
'admin'
),
new
lang_string
(
'configsupportname'
,
'admin'
),
$primaryadminname
,
PARAM_NOTAGS
));
$temp
->
add
(
new
admin_setting_configtext
(
'supportemail'
,
new
lang_string
(
'supportemail'
,
'admin'
),
new
lang_string
(
'configsupportemail'
,
'admin'
),
$primaryadminemail
,
PARAM_NOTAGS
));
$temp
->
add
(
new
admin_setting_configtext
(
'supportname'
,
new
lang_string
(
'supportname'
,
'admin'
),
new
lang_string
(
'configsupportname'
,
'admin'
),
$primaryadminname
,
PARAM_NOTAGS
));
$setting
=
new
admin_setting_configtext
(
'supportemail'
,
new
lang_string
(
'supportemail'
,
'admin'
),
new
lang_string
(
'configsupportemail'
,
'admin'
),
$primaryadminemail
,
PARAM_NOTAGS
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$temp
->
add
(
new
admin_setting_configtext
(
'supportpage'
,
new
lang_string
(
'supportpage'
,
'admin'
),
new
lang_string
(
'configsupportpage'
,
'admin'
),
''
,
PARAM_URL
));
$ADMIN
->
add
(
'server'
,
$temp
);
...
...
admin/settings/users.php
View file @
113efed5
...
...
@@ -190,7 +190,10 @@ if ($hassiteconfig
'department'
=>
new
lang_string
(
'department'
),
'institution'
=>
new
lang_string
(
'institution'
),
)));
$temp
->
add
(
new
admin_setting_configtext
(
'fullnamedisplay'
,
new
lang_string
(
'fullnamedisplay'
,
'admin'
),
new
lang_string
(
'configfullnamedisplay'
,
'admin'
),
'language'
,
PARAM_TEXT
,
50
));
$setting
=
new
admin_setting_configtext
(
'fullnamedisplay'
,
new
lang_string
(
'fullnamedisplay'
,
'admin'
),
new
lang_string
(
'configfullnamedisplay'
,
'admin'
),
'language'
,
PARAM_TEXT
,
50
);
$setting
->
set_force_ltr
(
true
);
$temp
->
add
(
$setting
);
$temp
->
add
(
new
admin_setting_configtext
(
'alternativefullnameformat'
,
new
lang_string
(
'alternativefullnameformat'
,
'admin'
),
new
lang_string
(
'alternativefullnameformat_desc'
,
'admin'
),
'language'
,
PARAM_RAW
,
50
));
...
...
admin/templates/setting.mustache
View file @
113efed5
...
...
@@ -36,7 +36,7 @@
{{/
error
}}
{{{
element
}}}
{{#
default
}}
<div
class=
"form-defaultinfo"
>
{{{
default
}}}
</div>
<div
class=
"form-defaultinfo
{{#
forceltr
}}
text-ltr
{{/
forceltr
}}
"
>
{{{
default
}}}
</div>
{{/
default
}}
</div>
<div
class=
"form-description"
>
{{{
description
}}}
</div>
...
...
admin/templates/setting_configcolourpicker.mustache
View file @
113efed5
...
...
@@ -23,7 +23,7 @@
{{>
core
/
pix_icon
}}
{{/
icon
}}
</div>
<input
type=
"text"
name=
"
{{
name
}}
"
id=
"
{{
id
}}
"
value=
"
{{
value
}}
"
size=
"12"
>
<input
type=
"text"
name=
"
{{
name
}}
"
id=
"
{{
id
}}
"
value=
"
{{
value
}}
"
size=
"12"
class=
"text-ltr"
>
{{#
haspreviewconfig
}}
<input
type=
"button"
id=
"
{{
id
}}
_preview"
value=
{{#
quote
}}{{#
str
}}
preview
{{/
str
}}{{/
quote
}}
class=
"admin_colourpicker_preview"
>
{{/
haspreviewconfig
}}
...
...
admin/templates/setting_configduration.mustache
View file @
113efed5
...
...
@@ -18,7 +18,7 @@
Setting
configduration.
}}
<div
class=
"form-duration defaultsnext"
>
<input
type=
"text"
size=
"5"
id=
"
{{
id
}}
v"
name=
"
{{
name
}}
[v]"
value=
"
{{
value
}}
"
>
<input
type=
"text"
size=
"5"
id=
"
{{
id
}}
v"
name=
"
{{
name
}}
[v]"
value=
"
{{
value
}}
"
class=
"text-ltr"
>
<label
class=
"accesshide"
for=
"
{{
id
}}
u"
>
{{#
str
}}
durationunits, admin
{{/
str
}}
</label>
<select
id=
"
{{
id
}}
u"
name=
"
{{
name
}}
[u]"
>
{{#
options
}}
...
...
admin/templates/setting_configfile.mustache
View file @
113efed5
...
...
@@ -18,7 +18,7 @@
Setting
configfile.
}}
<div
class=
"form-file defaultsnext"
>
<input
type=
"text"
name=
"
{{
name
}}
"
id=
"
{{
id
}}
"
size=
"
{{
size
}}
"
value=
"
{{
value
}}
"
{{#
readonly
}}
readonly
{{/
readonly
}}
>
<input
type=
"text"
name=
"
{{
name
}}
"
id=
"
{{
id
}}
"
size=
"
{{
size
}}
"
value=
"
{{
value
}}
"
class=
"text-ltr"
{{#
readonly
}}
readonly
{{/
readonly
}}
>
{{#
showvalidity
}}
{{#
valid
}}
<span
class=
"pathok"
>
✔
</span>
...
...
admin/templates/setting_configtext.mustache
View file @
113efed5
...
...
@@ -18,5 +18,5 @@
Setting
configtext.
}}
<div
class=
"form-text defaultsnext"
>
<input
type=
"text"
name=
"
{{
name
}}
"
value=
"
{{
value
}}
"
size=
"
{{
size
}}
"
id=
"
{{
id
}}
"
{{#
attributes
}}
{{
name
}}
="
{{
value
}}
"
{{/
attributes
}}
>
<input
type=
"text"
name=
"
{{
name
}}
"
value=
"
{{
value
}}
"
size=
"
{{
size
}}
"
id=
"
{{
id
}}
"
class=
"
{{#
forceltr
}}
text-ltr
{{/
forceltr
}}
"
{{#
attributes
}}
{{
name
}}
="
{{
value
}}
"
{{/
attributes
}}
>
</div>
admin/templates/setting_configtextarea.mustache
View file @
113efed5
...
...
@@ -18,5 +18,5 @@
Setting
configtextarea.
}}
<div
class=
"form-textarea"
>
<textarea
rows=
"
{{
rows
}}
"
cols=
"
{{
cols
}}
"
id=
"
{{
id
}}
"
name=
"
{{
name
}}
"
spellcheck=
"true"
>
{{
value
}}
</textarea>
<textarea
rows=
"
{{
rows
}}
"
cols=
"
{{
cols
}}
"
id=
"
{{
id
}}
"
name=
"
{{
name
}}
"
spellcheck=
"true"
class=
"
{{#
forceltr
}}
text-ltr
{{/
forceltr
}}
"
>
{{
value
}}
</textarea>
</div>
admin/templates/setting_configtime.mustache
View file @
113efed5
...
...
@@ -17,7 +17,7 @@
{{
!
Setting
configtime.
}}
<div
class=
"form-time defaultsnext"
>
<div
class=
"form-time defaultsnext
text-ltr
"
>
<label
class=
"accesshide"
for=
"
{{
id
}}
h"
>
{{#
str
}}
hours
{{/
str
}}
</label>
<select
id=
"
{{
id
}}
h"
name=
"
{{
name
}}
[h]"
>
{{#
hours
}}
...
...
admin/templates/setting_devicedetectregex.mustache
View file @
113efed5
...
...
@@ -28,10 +28,10 @@
{{#
expressions
}}
<tr>
<td
class=
"c
{{
index
}}
"
>
<input
type=
"text"
name=
"
{{
name
}}
[expression
{{
index
}}
]"
class=
"form-text"
value=
"
{{
expression
}}
"
>
<input
type=
"text"
name=
"
{{
name
}}
[expression
{{
index
}}
]"
class=
"form-text
text-ltr
"
value=
"
{{
expression
}}
"
>
</td>
<td
class=
"c
{{
index
}}
"
>
<input
type=
"text"
name=
"
{{
name
}}
[value
{{
index
}}
]"
class=
"form-text"
value=
"
{{
value
}}
"
>
<input
type=
"text"
name=
"
{{
name
}}
[value
{{
index
}}
]"
class=
"form-text
text-ltr
"
value=
"
{{
value
}}
"
>
</td>
</tr>
{{/
expressions
}}
...
...
admin/templates/setting_emoticons.mustache
View file @
113efed5
...
...
@@ -33,7 +33,7 @@
<tr>
{{#
fields
}}
<td
class=
"c
{{
index
}}
"
>
<input
type=
"text"
name=
"
{{
name
}}
[
{{
field
}}
]"
class=
"form-text"
value=
"
{{
value
}}
"
>
<input
type=
"text"
name=
"
{{
name
}}
[
{{
field
}}
]"
class=
"form-text
text-ltr
"
value=
"
{{
value
}}
"
>
</td>
{{/
fields
}}
<td>
...
...
admin/tool/task/renderer.php
View file @
113efed5
...
...
@@ -71,7 +71,8 @@ class tool_task_renderer extends plugin_renderer_base {
$editlink
=
$this
->
render
(
new
pix_icon
(
't/locked'
,
get_string
(
'scheduledtaskchangesdisabled'
,
'tool_task'
)));
}
$namecell
=
new
html_table_cell
(
$task
->
get_name
()
.
"
\n
"
.
html_writer
::
tag
(
'span'
,
'\\'
.
get_class
(
$task
),
array
(
'class'
=>
'task-class'
)));
$namecell
=
new
html_table_cell
(
$task
->
get_name
()
.
"
\n
"
.
html_writer
::
tag
(
'span'
,
'\\'
.
get_class
(
$task
),
array
(
'class'
=>
'task-class text-ltr'
)));
$namecell
->
header
=
true
;
$component
=
$task
->
get_component
();
...
...
@@ -117,6 +118,13 @@ class tool_task_renderer extends plugin_renderer_base {
new
html_table_cell
(
$task
->
get_fail_delay
()),
new
html_table_cell
(
$customised
)));
// Cron-style values must always be LTR.
$row
->
cells
[
5
]
->
attributes
[
'class'
]
=
'text-ltr'
;
$row
->
cells
[
6
]
->
attributes
[
'class'
]
=
'text-ltr'
;
$row
->
cells
[
7
]
->
attributes
[
'class'
]
=
'text-ltr'
;
$row
->
cells
[
8
]
->
attributes
[
'class'
]
=
'text-ltr'
;
$row
->
cells
[
9
]
->
attributes
[
'class'
]
=
'text-ltr'
;
if
(
$disabled
)
{
$row
->
attributes
[
'class'
]
=
'disabled'
;
}
...
...
admin/tool/task/styles.css
View file @
113efed5
...
...
@@ -4,3 +4,8 @@
color
:
#888
;
font-size
:
0.75em
;
}
#page-admin-tool-task-scheduledtasks
input
[
type
=
text
]
/*rtl:ignore*/
direction
:
ltr
;
}
admin/upgrade.txt
0 → 100644
View file @
113efed5
This files describes API changes in /admin/*.
=== 3.2 ===
* Admin settings have been refined to better support right-to-left languages. In RTL,
most fields should not have their direction flipped, a URL, a path to a file, ...
are always displayed LTR. Most of the admin_setting classes will now prefer LTR.
If you must not force left-to-right, here are a few options:
* Call admin_setting::set_force_ltr(false) on your setting;
* Use the class admin_setting_localisedtext for text inputs;
* Use the class admin_setting_localisedtextarea for larger text inputs.
auth/db/config.html
View file @
113efed5
...
...
@@ -55,7 +55,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"host"
>
<?php print_string("auth_dbhost_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"host"
name=
"host"
type=
"text"
size=
"30"
value=
"<?php echo $config->host?>"
/>
<input
id=
"host"
name=
"host"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->host?>"
/>
<?php
if (isset($err["host"])) {
...
...
@@ -94,7 +94,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"name"
>
<?php print_string("auth_dbname_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"name"
name=
"name"
type=
"text"
size=
"30"
value=
"<?php echo $config->name?>"
/>
<input
id=
"name"
name=
"name"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->name?>"
/>
<?php
if (isset($err["name"])) {
...
...
@@ -109,7 +109,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"user"
>
<?php print_string("auth_dbuser_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"user"
name=
"user"
type=
"text"
size=
"30"
value=
"<?php echo $config->user?>"
/>
<input
id=
"user"
name=
"user"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->user?>"
/>
<?php
if (isset($err["user"])) {
...
...
@@ -124,7 +124,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"pass"
>
<?php print_string("auth_dbpass_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"pass"
name=
"pass"
type=
"password"
size=
"30"
value=
"<?php p($config->pass)?>"
autocomplete=
"off"
/>
<input
id=
"pass"
name=
"pass"
type=
"password"
class=
"text-ltr"
size=
"30"
value=
"<?php p($config->pass)?>"
autocomplete=
"off"
/>
<?php
if (isset($err["pass"])) {
...
...
@@ -141,7 +141,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"table"
>
<?php print_string("auth_dbtable_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"table"
name=
"table"
type=
"text"
size=
"30"
value=
"<?php echo $config->table?>"
/>
<input
id=
"table"
name=
"table"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->table?>"
/>
<?php
if (isset($err["table"])) {
...
...
@@ -156,7 +156,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"fielduser"
>
<?php print_string("auth_dbfielduser_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"fielduser"
name=
"fielduser"
type=
"text"
size=
"30"
value=
"<?php echo $config->fielduser?>"
/>
<input
id=
"fielduser"
name=
"fielduser"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->fielduser?>"
/>
<?php
if (isset($err["fielduser"])) {
...
...
@@ -171,7 +171,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"fieldpass"
>
<?php print_string("auth_dbfieldpass_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"fieldpass"
name=
"fieldpass"
type=
"text"
size=
"30"
value=
"<?php echo $config->fieldpass?>"
/>
<input
id=
"fieldpass"
name=
"fieldpass"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->fieldpass?>"
/>
<?php
if (isset($err["fieldpass"])) {
...
...
@@ -203,7 +203,7 @@
<tr
valign=
"top"
class=
"required"
>
<td
align=
"right"
><label
for=
"extencoding"
>
<?php print_string("auth_dbextencoding", "auth_db") ?>
</label></td>
<td>
<input
id=
"extencoding"
name=
"extencoding"
type=
"text"
value=
"<?php echo $config->extencoding ?>"
/>
<input
id=
"extencoding"
name=
"extencoding"
type=
"text"
class=
"text-ltr"
value=
"<?php echo $config->extencoding ?>"
/>
<?php
if (isset($err['extencoding'])) {
...
...
@@ -218,7 +218,7 @@
<tr
valign=
"top"
>
<td
align=
"right"
><label
for=
"setupsql"
>
<?php print_string("auth_dbsetupsql", "auth_db") ?>
</label></td>
<td>
<input
id=
"setupsql"
name=
"setupsql"
type=
"text"
value=
"<?php echo $config->setupsql ?>"
/>
<input
id=
"setupsql"
name=
"setupsql"
type=
"text"
class=
"text-ltr"
value=
"<?php echo $config->setupsql ?>"
/>
</td>
<td>
<?php print_string('auth_dbsetupsqlhelp', 'auth_db') ?>
</td>
</tr>
...
...
@@ -234,7 +234,7 @@
<tr
valign=
"top"
>
<td
align=
"right"
><label
for=
"changepasswordurl"
>
<?php print_string("auth_dbchangepasswordurl_key", "auth_db") ?>
</label></td>
<td>
<input
id=
"changepasswordurl"
name=
"changepasswordurl"
type=
"text"
value=
"<?php echo $config->changepasswordurl ?>"
/>
<input
id=
"changepasswordurl"
name=
"changepasswordurl"
type=
"text"
class=
"text-ltr"
value=
"<?php echo $config->changepasswordurl ?>"
/>
<?php
if (isset($err['changepasswordurl'])) {
...
...
auth/ldap/config.html
View file @
113efed5
...
...
@@ -134,7 +134,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"host_url"
>
<?php print_string('auth_ldap_host_url_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"host_url"
id=
"host_url"
type=
"text"
size=
"30"
value=
"<?php echo $config->host_url?>"
/>
<input
name=
"host_url"
id=
"host_url"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->host_url?>"
/>
<?php if (isset($err['host_url'])) { echo $OUTPUT->error_text($err['host_url']); } ?>
</td>
<td>
...
...
@@ -174,7 +174,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"ldapencoding"
>
<?php print_string('auth_ldap_ldap_encoding_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
id=
"ldapencoding"
name=
"ldapencoding"
type=
"text"
value=
"<?php echo $config->ldapencoding ?>"
/>
<input
id=
"ldapencoding"
name=
"ldapencoding"
type=
"text"
class=
"text-ltr"
value=
"<?php echo $config->ldapencoding ?>"
/>
<?php if (isset($err['ldapencoding'])) { echo $OUTPUT->error_text($err['ldapencoding']); } ?>
</td>
<td>
...
...
@@ -186,7 +186,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"pagesize"
>
<?php print_string('pagesize_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
id=
"pagesize"
name=
"pagesize"
type=
"text"
value=
"<?php echo $config->pagesize ?>"
<?
php
echo
$
disabled
?
>
/>
<input
id=
"pagesize"
name=
"pagesize"
type=
"text"
class=
"text-ltr"
value=
"<?php echo $config->pagesize ?>"
<?
php
echo
$
disabled
?
>
/>
<?php
if (isset($err['pagesize'])) { echo $OUTPUT->error_text($err['pagesize']); }
if ($disabled) {
...
...
@@ -221,7 +221,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"bind_dn"
>
<?php print_string('auth_ldap_bind_dn_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"bind_dn"
id=
"bind_dn"
type=
"text"
size=
"30"
value=
"<?php echo $config->bind_dn?>"
/>
<input
name=
"bind_dn"
id=
"bind_dn"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->bind_dn?>"
/>
<?php if (isset($err['bind_dn'])) { echo $OUTPUT->error_text($err['bind_dn']); } ?>
</td>
<td>
...
...
@@ -233,7 +233,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"bind_pw"
>
<?php print_string('auth_ldap_bind_pw_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"bind_pw"
id=
"bind_pw"
type=
"password"
size=
"30"
value=
"<?php echo $config->bind_pw?>"
autocomplete=
"off"
/>
<input
name=
"bind_pw"
id=
"bind_pw"
type=
"password"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->bind_pw?>"
autocomplete=
"off"
/>
<?php if (isset($err['bind_pw'])) { echo $OUTPUT->error_text($err['bind_pw']); } ?>
</td>
<td>
...
...
@@ -264,7 +264,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"contexts"
>
<?php print_string('auth_ldap_contexts_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"contexts"
id=
"contexts"
type=
"text"
size=
"30"
value=
"<?php echo $config->contexts?>"
/>
<input
name=
"contexts"
id=
"contexts"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->contexts?>"
/>
<?php if (isset($err['contexts'])) { echo $OUTPUT->error_text($err['contexts']); } ?>
</td>
<td>
...
...
@@ -304,7 +304,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"user_attribute"
>
<?php print_string('auth_ldap_user_attribute_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"user_attribute"
id=
"user_attribute"
type=
"text"
size=
"30"
value=
"<?php echo $config->user_attribute?>"
/>
<input
name=
"user_attribute"
id=
"user_attribute"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->user_attribute?>"
/>
<?php if (isset($err['user_attribute'])) { echo $OUTPUT->error_text($err['user_attribute']); } ?>
</td>
<td>
...
...
@@ -316,7 +316,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"suspended_attribute"
>
<?php print_string('auth_ldap_suspended_attribute_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"suspended_attribute"
id=
"suspended_attribute"
type=
"text"
size=
"30"
value=
"<?php echo $config->suspended_attribute?>"
/>
<input
name=
"suspended_attribute"
id=
"suspended_attribute"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->suspended_attribute?>"
/>
<?php if (isset($err['suspended_attribute'])) { echo $OUTPUT->error_text($err['suspended_attribute']); } ?>
</td>
<td>
...
...
@@ -328,7 +328,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"memberattribute"
>
<?php print_string('auth_ldap_memberattribute_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"memberattribute"
id=
"memberattribute"
type=
"text"
size=
"30"
value=
"<?php echo $config->memberattribute?>"
/>
<input
name=
"memberattribute"
id=
"memberattribute"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->memberattribute?>"
/>
<?php if (isset($err['memberattribute'])) { echo $OUTPUT->error_text($err['memberattribute']); } ?>
</td>
<td>
...
...
@@ -340,7 +340,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"memberattribute_isdn"
>
<?php print_string('auth_ldap_memberattribute_isdn_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"memberattribute_isdn"
id=
"memberattribute_isdn"
type=
"text"
size=
"30"
value=
"<?php echo $config->memberattribute_isdn?>"
/>
<input
name=
"memberattribute_isdn"
id=
"memberattribute_isdn"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->memberattribute_isdn?>"
/>
<?php if (isset($err['memberattribute_isdn'])) { echo $OUTPUT->error_text($err['memberattribute_isdn']); } ?>
</td>
<td>
...
...
@@ -352,7 +352,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"objectclass"
>
<?php print_string('auth_ldap_objectclass_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"objectclass"
id=
"objectclass"
type=
"text"
size=
"30"
value=
"<?php echo $config->objectclass?>"
/>
<input
name=
"objectclass"
id=
"objectclass"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->objectclass?>"
/>
<?php if (isset($err['objectclass'])) { echo $OUTPUT->error_text($err['objectclass']); } ?>
</td>
<td>
...
...
@@ -409,7 +409,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"changepasswordurl"
>
<?php print_string('auth_ldap_changepasswordurl_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"changepasswordurl"
id=
"changepasswordurl"
type=
"text"
value=
"<?php echo $config->changepasswordurl ?>"
/>
<input
name=
"changepasswordurl"
id=
"changepasswordurl"
type=
"text"
class=
"text-ltr"
value=
"<?php echo $config->changepasswordurl ?>"
/>
<?php if (isset($err['changepasswordurl'])) { echo $OUTPUT->error_text($err['changepasswordurl']); } ?>
</td>
<td>
...
...
@@ -443,7 +443,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"expiration_warning"
>
<?php print_string('auth_ldap_expiration_warning_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"expiration_warning"
id=
"expiration_warning"
type=
"text"
size=
"2"
value=
"<?php echo $config->expiration_warning?>"
/>
<input
name=
"expiration_warning"
id=
"expiration_warning"
type=
"text"
class=
"text-ltr"
size=
"2"
value=
"<?php echo $config->expiration_warning?>"
/>
<?php if (isset($err['expiration_warning'])) { echo $OUTPUT->error_text($err['expiration_warning']); } ?>
</td>
<td>
...
...
@@ -455,7 +455,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"expireattr"
>
<?php print_string('auth_ldap_expireattr_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"expireattr"
id=
"expireattr"
type=
"text"
size=
"30"
value=
"<?php echo $config->expireattr?>"
/>
<input
name=
"expireattr"
id=
"expireattr"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->expireattr?>"
/>
<?php if (isset($err['expireattr'])) { echo $OUTPUT->error_text($err['expireattr']); } ?>
</td>
<td>
...
...
@@ -478,7 +478,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"graceattr"
>
<?php print_string('auth_ldap_gracelogin_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"graceattr"
id=
"graceattr"
type=
"text"
size=
"30"
value=
"<?php echo $config->graceattr?>"
/>
<input
name=
"graceattr"
id=
"graceattr"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->graceattr?>"
/>
<?php if (isset($err['graceattr'])) { echo $OUTPUT->error_text($err['graceattr']); } ?>
</td>
<td>
...
...
@@ -506,7 +506,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"create_context"
>
<?php print_string('auth_ldap_create_context_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"create_context"
id=
"create_context"
type=
"text"
size=
"30"
value=
"<?php echo $config->create_context?>"
/>
<input
name=
"create_context"
id=
"create_context"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->create_context?>"
/>
<?php if (isset($err['create_context'])) { echo $OUTPUT->error_text($err['create_context']); } ?>
</td>
<td>
...
...
@@ -523,7 +523,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"creators"
>
<?php print_string('auth_ldap_creators_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"creators"
id=
"creators"
type=
"text"
size=
"30"
value=
"<?php echo $config->creators?>"
/>
<input
name=
"creators"
id=
"creators"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->creators?>"
/>
<?php if (isset($err['creators'])) { echo $OUTPUT->error_text($err['creators']); } ?>
</td>
<td>
...
...
@@ -584,7 +584,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"ntlmsso_subnet"
>
<?php print_string('auth_ntlmsso_subnet_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"ntlmsso_subnet"
id=
"ntlmsso_subnet"
type=
"text"
size=
"30"
value=
"<?php p($config->ntlmsso_subnet) ?>"
/>
<input
name=
"ntlmsso_subnet"
id=
"ntlmsso_subnet"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php p($config->ntlmsso_subnet) ?>"
/>
</td>
<td>
<?php print_string('auth_ntlmsso_subnet', 'auth_ldap') ?>
...
...
@@ -622,7 +622,7 @@ if (!ldap_paged_results_supported($config->ldap_version)) {
<label
for=
"ntlmsso_remoteuserformat"
>
<?php print_string('auth_ntlmsso_remoteuserformat_key', 'auth_ldap') ?>
</label>
</td>
<td>
<input
name=
"ntlmsso_remoteuserformat"
id=
"ntlmsso_remoteuserformat"
type=
"text"
size=
"30"
value=
"<?php echo $config->ntlmsso_remoteuserformat?>"
/>
<input
name=
"ntlmsso_remoteuserformat"
id=
"ntlmsso_remoteuserformat"
type=
"text"
class=
"text-ltr"
size=
"30"
value=
"<?php echo $config->ntlmsso_remoteuserformat?>"
/>
<?php if (isset($err['ntlmsso_remoteuserformat'])) { echo $OUTPUT->error_text($err['ntlmsso_remoteuserformat']); } ?>
</td>
<td>
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment