mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-13481 Strings fullname and shortname are now deprecated
This is a final cleanup commit of fullname and shortname issue. All places where these strings were detected yet have been replaced with proper fullnamecourse or fullnameuser or some other context specific string. AMOS BEGIN CPY [fullname,core],[outcomefullname,core_grades] CPY [shortname,core],[outcomeshortname,core_grades] CPY [name,core],[rolefullname,core_role] CPY [shortname,core],[roleshortname,core_role] AMOS END
This commit is contained in:
parent
2b37004c28
commit
29cbe43189
17 changed files with 27 additions and 24 deletions
|
@ -461,7 +461,7 @@ class core_backup_renderer extends plugin_renderer_base {
|
|||
$output .= html_writer::start_tag('div', array('class' => 'rcs-results'));
|
||||
|
||||
$table = new html_table();
|
||||
$table->head = array('', get_string('shortname'), get_string('fullname'));
|
||||
$table->head = array('', get_string('shortnamecourse'), get_string('fullnamecourse'));
|
||||
$table->data = array();
|
||||
if ($component->get_count() !== 0) {
|
||||
foreach ($component->get_results() as $course) {
|
||||
|
@ -526,7 +526,7 @@ class core_backup_renderer extends plugin_renderer_base {
|
|||
$output .= html_writer::start_tag('div', array('class' => 'ics-results'));
|
||||
|
||||
$table = new html_table();
|
||||
$table->head = array('', get_string('shortname'), get_string('fullname'));
|
||||
$table->head = array('', get_string('shortnamecourse'), get_string('fullnamecourse'));
|
||||
$table->data = array();
|
||||
foreach ($component->get_results() as $course) {
|
||||
$row = new html_table_row();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue