tab mnu on modlos
- このフォーラムに新しいトピックを立てることはできません
- このフォーラムではゲスト投稿が禁止されています
andsim
投稿数: 11

hi there i decide make new post
i want to know how to change tab menu or add them on modlos page, can it be possible?
i want to know how to change tab menu or add them on modlos page, can it be possible?
投票数:111
平均点:5.32
iseki
投稿数: 1581

Yes. Please edit print_tabnav() function in include/modlos.func.php
投票数:75
平均点:4.53
andsim
投稿数: 11

how do i rename the tab
投票数:108
平均点:5.28
iseki
投稿数: 1581

Example
setting is identifer,
$CFG->wwwroot.'/admin/settings.php?section=blocksettingmodlos'.$course_amp is link,
'<b>'.get_string('modlos_general_setting_tab','block_modlos').'</b>' is displayed tab name.
Here,
'modlos_general_setting_tab' is variable of message string.
When you change message string, please edit lang/en_utf8/block_modlos.php
or use Site Administration menu -> Language editing function of Moodle.
$toprow[] = new tabobject('settings', $CFG->wwwroot.'/admin/settings.php?section=blocksettingmodlos'.$course_amp,
'<b>'.get_string('modlos_general_setting_tab','block_modlos').'</b>');
setting is identifer,
$CFG->wwwroot.'/admin/settings.php?section=blocksettingmodlos'.$course_amp is link,
'<b>'.get_string('modlos_general_setting_tab','block_modlos').'</b>' is displayed tab name.
Here,
'modlos_general_setting_tab' is variable of message string.
When you change message string, please edit lang/en_utf8/block_modlos.php
or use Site Administration menu -> Language editing function of Moodle.
投票数:167
平均点:5.09