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

java - How to specify maven bin in eclipse maven plugin? -

Error while updating a record in APEX screen -

c++ - In an add-in in Excel, written in C(++), how does one get the name of the function which called into the addin? -