You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
<?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/>.
|
|
|
|
/**
|
|
* Define metadata for Accessibility block
|
|
*
|
|
* This file is the cornerstone of the block - when the page loads, it
|
|
* checks if the user has a custom settings for the font size and colour
|
|
* scheme (either in the session or the database) and creates a stylesheet
|
|
* to override the standard styles with this setting. (2)
|
|
*
|
|
* @package block_accessibility (4)
|
|
* @copyright Copyright 2009 onwards Taunton's College (5)
|
|
* @author Mark Johnson (6)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later (7)
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->version = 2017051700;
|
|
$plugin->cron = 3600;
|
|
$plugin->requires = 2016051900;
|
|
$plugin->component = 'block_accessibility';
|
|
$plugin->maturity = MATURITY_STABLE;
|
|
$plugin->release = '2.2.4';
|
|
|