Skip to content

Commit

Permalink
Merge pull request #1181 from gbarat87/patch-1
Browse files Browse the repository at this point in the history
fix #1180 Update index.md $plugin->incompatible
  • Loading branch information
andrewnicols authored Nov 12, 2024
2 parents 1a2561b + 8dd971a commit bd5fa9b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/apis/commonfiles/version.php/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tags:
description: A description of the plugin version.php file, describing the various features
---

import { LanguageProperty, } from '@site/src/components';
import { LanguageProperty } from '@site/src/components';

Every plugin must have a `version.php` file located in the root directory of that plugin.

Expand Down Expand Up @@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2022060100;
$plugin->requires = 2022041900.00; // Moodle 4.0.
$plugin->supported = [400, 400];
$plugin->incompatible = [401];
$plugin->incompatible = 401;
$plugin->component = 'tool_example';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '41.3-lemmings-1.0';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2022060100;
$plugin->requires = 2022041900.00; // Moodle 4.0.
$plugin->supported = [400, 400];
$plugin->incompatible = [401];
$plugin->incompatible = 401;
$plugin->component = 'tool_example';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '41.3-lemmings-1.0';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2022060100;
$plugin->requires = 2022041900.00; // Moodle 4.0.
$plugin->supported = [400, 400];
$plugin->incompatible = [401];
$plugin->incompatible = 401;
$plugin->component = 'tool_example';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '41.3-lemmings-1.0';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tags:
description: A description of the plugin version.php file, describing the various features
---

import { LanguageProperty, } from '@site/src/components';
import { LanguageProperty } from '@site/src/components';

Every plugin must have a `version.php` file located in the root directory of that plugin.

Expand Down Expand Up @@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2022060100;
$plugin->requires = 2022041900.00; // Moodle 4.0.
$plugin->supported = [400, 400];
$plugin->incompatible = [401];
$plugin->incompatible = 401;
$plugin->component = 'tool_example';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '41.3-lemmings-1.0';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tags:
description: A description of the plugin version.php file, describing the various features
---

import { LanguageProperty, } from '@site/src/components';
import { LanguageProperty } from '@site/src/components';

Every plugin must have a `version.php` file located in the root directory of that plugin.

Expand Down Expand Up @@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2022060100;
$plugin->requires = 2022041900.00; // Moodle 4.0.
$plugin->supported = [400, 400];
$plugin->incompatible = [401];
$plugin->incompatible = 401;
$plugin->component = 'tool_example';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '41.3-lemmings-1.0';
Expand Down

0 comments on commit bd5fa9b

Please sign in to comment.