Browse Source

Reorganização do código

MOODLE_34_STABLE
Matheus Garcia 6 years ago
parent
commit
14e1ad244a
  1. 64
      layout/frontpage_ilb.php

64
layout/frontpage_ilb.php

@ -26,44 +26,28 @@ defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/../config.php'); require_once($CFG->libdir . '/../config.php');
$bodyattributes = $OUTPUT->body_attributes([]);
if (isloggedin()) { if (isloggedin()) {
user_preference_allow_ajax_update('drawer-open-nav', PARAM_ALPHA); user_preference_allow_ajax_update('drawer-open-nav', PARAM_ALPHA);
require_once($CFG->libdir . '/behat/lib.php'); require_once($CFG->libdir . '/behat/lib.php');
$navdraweropen = (get_user_preferences('drawer-open-nav', 'true') == 'true'); $navdraweropen = (get_user_preferences('drawer-open-nav', 'true') == 'true');
$extraclasses = []; $extraclasses = [];
if ($navdraweropen) { if ($navdraweropen) {
$extraclasses[] = 'drawer-open-left'; $extraclasses[] = 'drawer-open-left';
} }
//$bodyattributes = $OUTPUT->body_attributes($extraclasses);
$blockshtml = $OUTPUT->blocks('side-pre'); $blockshtml = $OUTPUT->blocks('side-pre');
$hasblocks = strpos($blockshtml, 'data-block=') !== false; $hasblocks = strpos($blockshtml, 'data-block=') !== false;
$regionmainsettingsmenu = $OUTPUT->region_main_settings_menu(); $regionmainsettingsmenu = $OUTPUT->region_main_settings_menu();
//$user_picture = false; global $USER,$PAGE;
//if ($user->picture) { $user_picture=new user_picture($USER);
//$user_picture = get_file_url($USER->id.'/'.$size['large'].'.jpg', null, 'user'); $user_picture_url=$user_picture->get_url($PAGE);
//} $user_profile_url=$CFG->wwwroot . "/user/profile.php?id=" . $USER->id . "&course=1";
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 = [ $templatecontext = [
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), 'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]),
'output' => $OUTPUT, 'output' => $OUTPUT,
'projetos_especiais' => $OUTPUT->image_url('projetos_especiais', 'theme'), 'projetos_especiais' => $OUTPUT->image_url('projetos_especiais', 'theme'),
@ -80,30 +64,24 @@ if (isloggedin()) {
'fundo-c' => $OUTPUT->image_url('fundo-c', 'theme'), 'fundo-c' => $OUTPUT->image_url('fundo-c', 'theme'),
'logo_saberes_xl' => $OUTPUT->image_url('logo_saberes_xl', 'theme'), 'logo_saberes_xl' => $OUTPUT->image_url('logo_saberes_xl', 'theme'),
'sidepreblocks' => $blockshtml, 'sidepreblocks' => $blockshtml,
'hasblocks' => $hasblocks, 'hasblocks' => $hasblocks,
'bodyattributes' => $bodyattributes, 'bodyattributes' => $bodyattributes,
'CursosOnlineSemTutoria' => $OUTPUT->image_url('Cursos-on-line-sem-tutor', 'theme'), 'CursosOnlineSemTutoria' => $OUTPUT->image_url('Cursos-on-line-sem-tutor', 'theme'),
'navdraweropen' => $navdraweropen, 'navdraweropen' => $navdraweropen,
'regionmainsettingsmenu' => $regionmainsettingsmenu, 'regionmainsettingsmenu' => $regionmainsettingsmenu,
'hasregionmainsettingsmenu' => !empty($regionmainsettingsmenu), 'hasregionmainsettingsmenu' => !empty($regionmainsettingsmenu),
'username' => $USER->username, 'username' => $USER->username,
'firstname' => $USER->firstname, 'firstname' => $USER->firstname,
'lastname' => $USER->lastname, 'lastname' => $USER->lastname,
'sessKey' => $USER->sesskey, 'sessKey' => $USER->sesskey,
'cpf1' => $cpf1, 'loginChangeNotification' => false,
'cpf2' => $cpf2, 'moodle_url' => $CFG->wwwroot,
'cpf3' => $cpf3, 'userpictureurl' => $user_picture_url,
'loginChangeNotification' => false, 'userprofileurl' => $user_profile_url,
'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 { } else {
$bodyattributes = $OUTPUT->body_attributes([]);
$templatecontext = [ $templatecontext = [
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), 'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]),
@ -124,7 +102,7 @@ if (isloggedin()) {
'moodle_url' => $CFG->wwwroot 'moodle_url' => $CFG->wwwroot
]; ];
echo $OUTPUT->render_from_template('theme_ilb/frontpage_ilb', $templatecontext);
} }
$templatecontext['flatnavigation'] = $PAGE->flatnav;
echo $OUTPUT->render_from_template('theme_ilb/frontpage_ilb', $templatecontext);

Loading…
Cancel
Save