mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
MDL-8105 some more icon class fixes including new .iconhelp for help and docs icon
This commit is contained in:
parent
c90edfe168
commit
0f13ec8f9b
19 changed files with 131 additions and 114 deletions
|
@ -220,7 +220,7 @@
|
|||
$recformat = get_record('glossary_formats','id',$formatid);
|
||||
echo '<tr>';
|
||||
echo '<td>' . $formatname . '</td>';
|
||||
$eicon = "<a title=\"" . get_string("edit") . "\" href=\"$CFG->wwwroot/mod/glossary/formats.php?id=$formatid&mode=edit\"><img border=\"0\" src=\"../pix/t/edit.gif\" alt=\"".get_string("edit")."\" /></a>";
|
||||
$eicon = "<a title=\"" . get_string("edit") . "\" href=\"$CFG->wwwroot/mod/glossary/formats.php?id=$formatid&mode=edit\"><img class=\"iconsmall\" src=\"../pix/t/edit.gif\" alt=\"".get_string("edit")."\" /></a>";
|
||||
if ( $recformat->visible ) {
|
||||
$vtitle = get_string("hide");
|
||||
$vicon = "hide.gif";
|
||||
|
@ -228,7 +228,7 @@
|
|||
$vtitle = get_string("show");
|
||||
$vicon = "show.gif";
|
||||
}
|
||||
$vicon = "<a title=\"" . $vtitle . "\" href=\"$CFG->wwwroot/mod/glossary/formats.php?id=$formatid&mode=visible\"><img border=\"0\" src=\"../pix/t/" . $vicon . "\" alt=\"$vtitle\" /></a>";
|
||||
$vicon = "<a title=\"" . $vtitle . "\" href=\"$CFG->wwwroot/mod/glossary/formats.php?id=$formatid&mode=visible\"><img class=\"iconsmall\" src=\"../pix/t/" . $vicon . "\" alt=\"$vtitle\" /></a>";
|
||||
|
||||
echo '<td align="center" nowrap="nowrap">' . $eicon . ' ' . $vicon . '</td>';
|
||||
echo '</tr>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue