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 -

python - Django-cities exits with "killed" -

python - How to get a widget position inside it's layout in Kivy? -