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.
20 lines
374 B
20 lines
374 B
<?php
|
|
/**
|
|
* Subplugin info class.
|
|
*
|
|
* @package mod_game
|
|
* @copyright 2014 Vasilis Daloukas
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
namespace mod_book\plugininfo;
|
|
|
|
use core\plugininfo\base;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
class gametool extends base {
|
|
public function is_uninstall_allowed() {
|
|
return true;
|
|
}
|
|
}
|
|
|