Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #2 #86bw7m38d - Load new core_external external classes. #25

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,10 @@ input, bug reports and beta testing

* Author: Luuk Verhoeven, [MFreak.nl](https://MFreak.nl/)
* Author: Gemma Lesterhuis, [Lesterhuis Training & Consultancy](https://ltnc.nl/)
* Min. required: Moodle 3.5.x
* Supports PHP: 7.2

![Moodle35](https://img.shields.io/badge/moodle-3.5-brightgreen.svg)
![Moodle36](https://img.shields.io/badge/moodle-3.6-brightgreen.svg)
![Moodle37](https://img.shields.io/badge/moodle-3.7-brightgreen.svg)
![Moodle38](https://img.shields.io/badge/moodle-3.8-brightgreen.svg)
![Moodle39](https://img.shields.io/badge/moodle-3.9-brightgreen.svg)
![Moodle310](https://img.shields.io/badge/moodle-3.10-brightgreen.svg)
![Moodle400](https://img.shields.io/badge/moodle-4.0-brightgreen.svg)
![Moodle401](https://img.shields.io/badge/moodle-4.1-brightgreen.svg)
* Min. required: Moodle 4.2
* Supports PHP: 7.4

![Moodle402](https://img.shields.io/badge/moodle-4.2-brightgreen.svg)

## Screens

Expand All @@ -41,6 +34,14 @@ input, bug reports and beta testing
3. Go to Site Administrator > Notification
4. Install the plugin


### Changelog

##### 4.2 (27-10-2023)
* Updated external_api namespace loading from core_external.
* No longer backwards compatible.


## Security

If you discover any security related issues, please email [[email protected]](mailto:[email protected]) instead of using the
Expand Down
11 changes: 6 additions & 5 deletions classes/external.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* External libary
* External library
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*
Expand All @@ -28,11 +28,12 @@

use block_user_favorites\output\output_favorites;
use context_block;
use context_user;
use dml_exception;
use external_api;
use external_function_parameters;
use external_single_structure;
use external_value;
use core_external\external_api;
use core_external\external_function_parameters;
use core_external\external_single_structure;
use core_external\external_value;
use moodle_exception;
use required_capability_exception;

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2023091300;
$plugin->version = 2023102700;
$plugin->requires = 2017111300;
$plugin->component = 'block_user_favorites';
$plugin->release = '4.1.3';
$plugin->release = '4.2.0';
$plugin->maturity = MATURITY_STABLE;
Loading