Kumi
87e610d313
Introduced the foundational elements for the exp360 module, including: - Added access control capabilities - Implemented index page for course instances - Created add, update, and delete functions for instances - Updated plugin version These changes establish the module's core functionality and prepare it for further development and integration.
7 lines
No EOL
276 B
PHP
7 lines
No EOL
276 B
PHP
<?php
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->version = 2024070501; // The current module version (Date: YYYYMMDDXX)
|
|
$plugin->requires = 2021051700; // Requires this Moodle version
|
|
$plugin->component = 'mod_exp360'; // Full name of the plugin (used for diagnostics)
|