Project 'ulrike.pado/asyst-moodle-plugin' was moved to 'knight/asyst-moodle-plugin'. Please update any links and bookmarks that may still have the old path.
-
Artem Baranovskyi authored
- creating ASYST API on Flask server - preparation a query to API - response processing and Manual Grading Form manipulations (not yet covers slots !!!).
7b3a3538
<?php
/**
* Version details.
*
* @package local_asystgrade
* @copyright 2024 Artem Baranovskyi
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
$plugin->component = 'local_asystgrade'; // Full name of the plugin.
$plugin->version = 2024032201; // The current module version (Date: YYYYMMDDXX).
$plugin->requires = 2022041900; // Requires Moodle version 3.11
//$plugin->cron = 0;
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.0';
$plugin->dependencies = [
'mod_quiz' => ANY_VERSION, // This plugin depends on the quiz module
];