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
mahara
mahara
Commits
63a1da59
Commit
63a1da59
authored
Jun 06, 2014
by
Yuliya Bozhko
Committed by
Gerrit Code Review
Jun 06, 2014
Browse files
Merge "Adding accessible text to column headers in users -> search (Bug #1266924)"
parents
c679c3b2
4369ffed
Changes
3
Hide whitespace changes
Inline
Side-by-side
htdocs/lang/en.utf8/mahara.php
View file @
63a1da59
...
...
@@ -411,6 +411,8 @@ $string['mustspecifyoldpassword'] = 'You must specify your current password.';
$string
[
'Site'
]
=
'Site'
;
// Misc. register stuff that could be used elsewhere
$string
[
'profileicon'
]
=
'Profile image'
;
$string
[
'bulkselect'
]
=
'Select users for editing / reports'
;
$string
[
'emailaddress'
]
=
'Email address'
;
$string
[
'emailaddressdescription'
]
=
' '
;
$string
[
'firstname'
]
=
'First name'
;
...
...
htdocs/lib/searchlib.php
View file @
63a1da59
...
...
@@ -393,6 +393,7 @@ function build_admin_user_search_results($search, $offset, $limit) {
'icon'
=>
array
(
'template'
=>
'admin/users/searchiconcolumn.tpl'
,
'class'
=>
'center'
,
'accessible'
=>
get_string
(
'profileicon'
),
),
'firstname'
=>
array
(
'name'
=>
get_string
(
'firstname'
),
...
...
@@ -453,6 +454,7 @@ function build_admin_user_search_results($search, $offset, $limit) {
'headhtml'
=>
'<a href="" id="selectall">'
.
get_string
(
'All'
)
.
'</a> <a href="" id="selectnone">'
.
get_string
(
'none'
)
.
'</a>'
,
'template'
=>
'admin/users/searchselectcolumn.tpl'
,
'class'
=>
'center nojs-hidden-table-cell'
,
'accessible'
=>
get_string
(
'bulkselect'
),
);
if
(
!
$USER
->
get
(
'admin'
)
&&
!
$USER
->
is_institutional_admin
())
{
...
...
htdocs/theme/raw/templates/admin/users/search.tpl
View file @
63a1da59
...
...
@@ -104,6 +104,9 @@
</a>
{
else
}
{
$c.name
}
{
if
$c.accessible
}
<span
class=
"accessible-hidden"
>
{
$c.accessible
}
</span>
{/
if
}
{/
if
}
{
if
$c.help
}
{
$c.helplink
|
safe
}
...
...
Write
Preview
Markdown
is supported
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