95 lines
2.9 KiB
PHP
95 lines
2.9 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Theme Config details
|
|
*
|
|
* @package theme_qualisaude
|
|
* @copyright 2015 LmsaceDev Team , lmsace.com
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*
|
|
*/
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
$THEME->name = 'qualisaude';
|
|
|
|
$THEME->sheets = ['custom'];
|
|
|
|
$THEME->editor_sheets = [];
|
|
|
|
$THEME->parents = ['boost'];
|
|
|
|
$THEME->enable_dock = false;
|
|
|
|
$THEME->yuicssmodules = array();
|
|
|
|
$THEME->rendererfactory = 'theme_overridden_renderer_factory';
|
|
|
|
$THEME->requiredblocks = '';
|
|
|
|
$THEME->addblockposition = BLOCK_ADDBLOCK_POSITION_FLATNAV;
|
|
|
|
$THEME->prescsscallback = 'theme_qualisaude_get_pre_scss';
|
|
|
|
$THEME->scss = function($theme) {
|
|
return theme_qualisaude_get_main_scss_content($theme);
|
|
};
|
|
|
|
$THEME->csspostprocess = 'theme_qualisaude_process_css';
|
|
|
|
$THEME->extrascsscallback = 'theme_qualisaude_get_extra_scss';
|
|
|
|
$THEME->javascripts_footer = ['theme'];
|
|
|
|
$THEME->layouts = array(
|
|
// The site home page.
|
|
|
|
// Standard layout with blocks, this is recommended for most pages with general information.
|
|
'standard' => array(
|
|
'file' => 'columns2.php',
|
|
'regions' => array('side-pre'),
|
|
'defaultregion' => 'side-pre',
|
|
),
|
|
'admin' => array(
|
|
'file' => 'columns2.php',
|
|
'regions' => array('side-pre'),
|
|
'defaultregion' => 'side-pre',
|
|
),
|
|
'frontpage' => array(
|
|
'file' => 'frontpage.php',
|
|
'regions' => array('side-pre'),
|
|
'defaultregion' => 'side-pre',
|
|
'options' => array('nonavbar' => true),
|
|
),
|
|
'login' => array(
|
|
'file' => 'login.php',
|
|
'regions' => array('side-pre'),
|
|
'defaultregion' => 'side-pre',
|
|
'options' => array('nonavbar' => true),
|
|
),
|
|
'mydashboard' => array(
|
|
'file' => 'my.php',
|
|
'regions' => array('side-pre'),
|
|
'defaultregion' => 'side-pre',
|
|
'options' => array('nonavbar' => false),
|
|
),
|
|
'course' => array(
|
|
'file' => 'course.php',
|
|
'regions' => array('side-pre'),
|
|
'defaultregion' => 'side-pre',
|
|
'options' => array('nonavbar' => false, ),
|
|
)
|
|
); |