/
var
/
www
/
html
/
gte
/
theme
/
isqua
/
Upload File
HOME
<?php // This line protects the file from being accessed by a URL directly. defined('MOODLE_INTERNAL') || die(); if ($ADMIN->fulltree) { $settings = new theme_boost_admin_settingspage_tabs('themesettingisqua', get_string('configtitle', 'theme_isqua')); // Each page is a tab - the first is the "General" tab. $page = new admin_settingpage('theme_isqua_general', get_string('generalsettings', 'theme_isqua')); // Raw SCSS to include before the content. $setting = new admin_setting_configtextarea( 'theme_isqua/scsspre', get_string('rawscsspre', 'theme_isqua'), get_string('rawscsspre_desc', 'theme_isqua'), '', PARAM_RAW ); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Raw SCSS to include after the content. $setting = new admin_setting_configtextarea( 'theme_isqua/scss', get_string('rawscss', 'theme_isqua'), get_string('rawscss_desc', 'theme_isqua'), '', PARAM_RAW ); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); $settings->add($page); }