|
|
@ -26,6 +26,8 @@ defined('MOODLE_INTERNAL') || die(); |
|
|
|
|
|
|
|
require_once($CFG->libdir . '/../config.php'); |
|
|
|
|
|
|
|
$bodyattributes = $OUTPUT->body_attributes([]); |
|
|
|
|
|
|
|
if (isloggedin()) { |
|
|
|
user_preference_allow_ajax_update('drawer-open-nav', PARAM_ALPHA); |
|
|
|
require_once($CFG->libdir . '/behat/lib.php'); |
|
|
@ -35,34 +37,16 @@ if (isloggedin()) { |
|
|
|
if ($navdraweropen) { |
|
|
|
$extraclasses[] = 'drawer-open-left'; |
|
|
|
} |
|
|
|
//$bodyattributes = $OUTPUT->body_attributes($extraclasses); |
|
|
|
|
|
|
|
$blockshtml = $OUTPUT->blocks('side-pre'); |
|
|
|
$hasblocks = strpos($blockshtml, 'data-block=') !== false; |
|
|
|
$regionmainsettingsmenu = $OUTPUT->region_main_settings_menu(); |
|
|
|
|
|
|
|
//$user_picture = false; |
|
|
|
//if ($user->picture) { |
|
|
|
//$user_picture = get_file_url($USER->id.'/'.$size['large'].'.jpg', null, 'user'); |
|
|
|
//} |
|
|
|
global $USER,$PAGE; |
|
|
|
$user_picture=new user_picture($USER); |
|
|
|
$user_picture_url=$user_picture->get_url($PAGE); |
|
|
|
$user_profile_url=$CFG->wwwroot . "/user/profile.php?id=" . $USER->id . "&course=1"; |
|
|
|
|
|
|
|
|
|
|
|
switch($USER->profile['situacaoaluno']) |
|
|
|
{ |
|
|
|
case '1': |
|
|
|
$cpf1 = 'cpf1'; |
|
|
|
break; |
|
|
|
case '2': |
|
|
|
$cpf2 = 'cpf2'; |
|
|
|
break; |
|
|
|
case '3': |
|
|
|
$cpf3 = 'cpf3'; |
|
|
|
break; |
|
|
|
} |
|
|
|
|
|
|
|
$templatecontext = [ |
|
|
|
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), |
|
|
|
'output' => $OUTPUT, |
|
|
@ -90,20 +74,14 @@ if (isloggedin()) { |
|
|
|
'firstname' => $USER->firstname, |
|
|
|
'lastname' => $USER->lastname, |
|
|
|
'sessKey' => $USER->sesskey, |
|
|
|
'cpf1' => $cpf1, |
|
|
|
'cpf2' => $cpf2, |
|
|
|
'cpf3' => $cpf3, |
|
|
|
'loginChangeNotification' => false, |
|
|
|
'moodle_url' => $CFG->wwwroot, |
|
|
|
'userpictureurl' => $user_picture_url, |
|
|
|
'userprofileurl' => $user_profile_url, |
|
|
|
]; |
|
|
|
|
|
|
|
$templatecontext['flatnavigation'] = $PAGE->flatnav; |
|
|
|
echo $OUTPUT->render_from_template('theme_ilb/frontpage_ilb', $templatecontext); |
|
|
|
|
|
|
|
} else { |
|
|
|
$bodyattributes = $OUTPUT->body_attributes([]); |
|
|
|
|
|
|
|
$templatecontext = [ |
|
|
|
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), |
|
|
@ -124,7 +102,7 @@ if (isloggedin()) { |
|
|
|
'moodle_url' => $CFG->wwwroot |
|
|
|
]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$templatecontext['flatnavigation'] = $PAGE->flatnav; |
|
|
|
echo $OUTPUT->render_from_template('theme_ilb/frontpage_ilb', $templatecontext); |
|
|
|
} |
|
|
|