Details
Description
While I understand that version 1.8 has addressed this problem, the fact that creators are normally displayed in course listings is a major problem for many sites.
There is absolutely no need to display creators because this is NOT a PEDAGOGICAL role but an ADMINISTRATIVE one. I therefore suggest that the 1.7 code be patched to prevent creators from being displayed. This can easily be done with the following conditional statement:
$role = array_shift($roles); // First one
if ($role->roleid > 2){
$fullname = fullname($teacher, has_capability('moodle/site:viewfullnames', $context));
$namesarray[] = format_string($role->name).': <a href="'.$CFG->wwwroot.'/user/view.php?id='.
$teacher->id.'&course='.SITEID.'">'.$fullname.'</a>';
}
See http://moodle.org/mod/forum/discuss.php?d=58606&parent=283886
If you make this changes you eliminate the teachers creator and show the teacher e tutor.
/COURSE/LIB.PHP
função
function print_course($course, $width="100%")
linha a modificar: 1536
if ($teachers = get_users_by_capability($context, 'moodle/course:view', <<--look
'u.*, ul.timeaccess as lastaccess, ra.hidden',
'r.sortorder ASC', '','','','', false)) {
$canseehidden = has_capability('moodle/role:viewhiddenassigns', $context);
$namesarray = array();
foreach ($teachers as $teacher) {
if (!$teacher->hidden || $canseehidden) {
$roles = get_user_roles($context, $teacher->id, true, 'r.sortorder ASC');
$role = array_shift($roles); // First one
if($role->roleid>2 and $role->roleid<5){ //teacher and tutor $fullname = fullname($teacher, has_capability('moodle/site:viewfullnames', $context)); $namesarray[] = format_string($role->name).': <a href="'.$CFG->wwwroot.'/user/view.php?id='. $teacher->id.'&course='.SITEID.'">'.$fullname.'</a>'; }
}
}