mirror of
https://github.com/moodle/moodle.git
synced 2025-07-13 10:26:31 +02:00
mod_assignment has been replaced with a stub that only exists to support restoring and auto upgrading to mod_assign. If you require mod_assignment for some old plugin, then overwrite with the 2.6 version manually.
46 lines
1.4 KiB
PHP
46 lines
1.4 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/>.
|
|
|
|
/**
|
|
* Subplugin info class.
|
|
*
|
|
* @package mod_assignment
|
|
* @copyright 2013 Petr Skoda {@link http://skodak.org}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
namespace mod_assignment\plugininfo;
|
|
|
|
use core\plugininfo\base;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
class assignment extends base {
|
|
/**
|
|
* Returns the information about plugin availability
|
|
*
|
|
* True means that the plugin is enabled. False means that the plugin is
|
|
* disabled. Null means that the information is not available, or the
|
|
* plugin does not support configurable availability or the availability
|
|
* can not be changed.
|
|
*
|
|
* @return null|bool
|
|
*/
|
|
public function is_enabled() {
|
|
return false;
|
|
}
|
|
}
|