diff --git a/settings.php b/settings.php index d3cb6b2..5712fc9 100644 --- a/settings.php +++ b/settings.php @@ -84,4 +84,21 @@ if ($hassiteconfig) { // This is the type of Parameter this config is PARAM_TEXT )); + + $settings->add(new admin_setting_configtext( + // This is the reference you will use to your configuration + 'local_adonis/requirements_view', + + // This is the friendly title for the config, which will be displayed + 'Requirements Vide', + + // This is helper text for this config field + 'ID of the view containing crew requirements', + + // This is the default value + 'ABC123', + + // This is the type of Parameter this config is + PARAM_TEXT + )); } \ No newline at end of file diff --git a/version.php b/version.php index e5ba77e..d13f318 100644 --- a/version.php +++ b/version.php @@ -2,7 +2,7 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = "2022112700"; +$plugin->version = "2022112800"; $plugin->component = 'local_adonis'; $plugin->maturity = MATURITY_ALPHA; $plugin->release = 'v0.0.1';