. // You should have received a copy of the GNU General Public License // along with Moodle. If not, see . /** * 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_game\plugininfo; use core\plugininfo\base; defined('MOODLE_INTERNAL') || die(); /** * The mod_game gametool. * * @package mod_game * @since Moodle 2.6 * @copyright 2014 Vasilis Daloukas * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class gametool extends base { /** * returns true to is_uninstall_allowed. * * @return true */ public function is_uninstall_allowed() { return true; } }