MDL-16407 Add to admin/settings/plugins.php to link to the new manage page, and pull in any qtype settings pages
MDL-16408 Write the manage question types page, to display the table of installed types
global $QTYPES, $CFG;
if (array_key_exists($question->qtype, $QTYPES)) {
- $namestr = $QTYPES[$question->qtype]->menu_name();
+ $namestr = $QTYPES[$question->qtype]->local_name();
} else {
$namestr = 'missingtype';
}