public function test_get_includefile_slideshow()
 {
     $thefile = \theme_essential\toolbox::get_include_file('slideshow');
     global $CFG;
     $withoutdirroot = str_replace($CFG->dirroot, '', $thefile);
     $this->assertEquals('/theme/essential/layout/includes/slideshow.php', $withoutdirroot);
 }
Esempio n. 2
0
?>
</title>
    <link rel="shortcut icon" href="<?php 
echo $OUTPUT->favicon();
?>
"/>
    <?php 
echo \theme_essential\toolbox::get_csswww();
?>
    <?php 
echo $OUTPUT->standard_head_html();
?>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Google web fonts -->
    <?php 
require_once \theme_essential\toolbox::get_include_file('fonts');
?>
</head>

<body <?php 
echo $OUTPUT->body_attributes($bodyclasses);
?>
>

<?php 
echo $OUTPUT->standard_top_of_body_html();
?>

<header role="banner">
    <div id="page-header" class="clearfix<?php 
echo $oldnavbar ? ' oldnavbar' : '';
Esempio n. 3
0
// 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/>.
/**
 * This is built using the bootstrapbase template to allow for new theme's using
 * Moodle's new Bootstrap theme engine
 *
 * @package     theme_essential
 * @copyright   2013 Julian Ridden
 * @copyright   2014 Gareth J Barnard, David Bezemer
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
require_once \theme_essential\toolbox::get_include_file('additionaljs');
require_once \theme_essential\toolbox::get_include_file('pagesettings');
echo $OUTPUT->doctype();
?>
<html <?php 
echo $OUTPUT->htmlattributes();
?>
>
<head>
    <title><?php 
echo $OUTPUT->page_title();
?>
</title>
    <link rel="shortcut icon" href="<?php 
echo $OUTPUT->favicon();
?>
"/>
    <?php 
echo \theme_essential\toolbox::get_csswww();
echo $OUTPUT->standard_head_html();
?>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Google web fonts -->
    <?php 
require_once \theme_essential\toolbox::get_include_file('fonts');
?>
    <!-- iOS Homescreen Icons -->
    <?php 
require_once \theme_essential\toolbox::get_include_file('iosicons');
?>
    <!-- Start Analytics -->
    <?php 
require_once \theme_essential\toolbox::get_include_file('analytics');
?>
    <!-- End Analytics -->
</head>

<body <?php 
echo $OUTPUT->body_attributes($bodyclasses);
?>
>

<?php 
echo $OUTPUT->standard_top_of_body_html();
?>

<header role="banner">
    <div id="page-header" class="clearfix<?php 
Esempio n. 5
0
// 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/>.
/**
 * This is built using the bootstrapbase template to allow for new theme's using
 * Moodle's new Bootstrap theme engine
 *
 * @package     theme_essential
 * @copyright   2013 Julian Ridden
 * @copyright   2014 Gareth J Barnard, David Bezemer
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
require_once \theme_essential\toolbox::get_include_file('additionaljs');
echo $OUTPUT->doctype();
?>
<html <?php 
echo $OUTPUT->htmlattributes();
?>
>

<head>
    <title><?php 
echo $OUTPUT->page_title();
?>
</title>
    <link rel="shortcut icon" href="<?php 
echo $OUTPUT->favicon();
?>
// 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/>.
/**
 * This is built using the bootstrapbase template to allow for new theme's using
 * Moodle's new Bootstrap theme engine
 *
 * @package     theme_essential
 * @copyright   2013 Julian Ridden
 * @copyright   2014 Gareth J Barnard, David Bezemer
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
if (\theme_essential\toolbox::get_setting('analyticsenabled')) {
    $analytics = \theme_essential\toolbox::get_setting('analytics');
    if ($analytics === "piwik") {
        require_once \theme_essential\toolbox::get_include_file('piwik');
    } elseif ($analytics === "guniversal") {
        require_once \theme_essential\toolbox::get_include_file('guniversal');
    }
}