Merge branch 'MDL-82191-main' of https://github.com/andrewnicols/moodle into main

This commit is contained in:
Paul Holden 2024-06-18 12:11:23 +01:00
commit 3724f682b3
No known key found for this signature in database
GPG Key ID: A81A96D6045F6164
4 changed files with 28 additions and 6 deletions

View File

@ -0,0 +1,9 @@
issueNumber: MDL-82191
notes:
core:
- message: |
The following files and their contents have been deprecated:
- `lib/soaplib.php
- `lib/tokeniserlib.php`
type: deprecated

View File

@ -16,10 +16,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Web services wrapper library script
*
* Since Moodle 2.0 we rely only on native PHP Soap extension,
* the original name of this file was lib/soap/phpsoap.php
* Web services wrapper library script.
*
* @package core
* @subpackage lib
@ -27,10 +24,18 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* {@link http://maths.york.ac.uk/serving_maths}
* and others
* @deprecated Moodle 4.5
* @todo MDL-89124 Remove this file.
*/
defined('MOODLE_INTERNAL') || die();
debugging(
'The soaplib.php file is deprecated and should not be used any more. ',
DEBUG_DEVELOPER,
);
/**
* Create a new SoapClient object
*

View File

@ -100,10 +100,8 @@ return new class extends phpunit_coverage_info {
'searchlib.php',
'sessionlib.php',
'setuplib.php',
'soaplib.php',
'statslib.php',
'tablelib.php',
'tokeniserlib.php',
'upgradelib.php',
'uploadlib.php',
'webdavlib.php',

View File

@ -48,8 +48,18 @@
* @package moodlecore
* @copyright (C) 2001-3001 Eloy Lafuente (stronk7) {@link http://contiento.com}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @deprecated Moodle 4.5
* @todo MDL-89124 Remove this file.
*/
defined('MOODLE_INTERNAL') || die();
debugging(
'The tokeniserlib.php file is deprecated and should not be used any more. ',
DEBUG_DEVELOPER,
);
/**
* Some constants
*/