How to get moodle module name from module id -


i want list names of modules (activities) in course sections moodle function or db query.

i can section details , module id mdl_course_sections , mdl_course_modules tables want name or tile put in every activity list down.

i tried mod_frog_get_coursemodule_info($cm) hadn't luck it.

use get_fast_mod_info() e.g.:

$modinfo = get_fast_modinfo($courseid); foreach ($modinfo $cm) {     echo $cm->modname; } 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -