mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 12:32:08 +02:00
Merge branch 'MDL-82191-main' of https://github.com/andrewnicols/moodle into main
This commit is contained in:
commit
3724f682b3
9
.upgradenotes/MDL-82191-2024061401255575.yml
Normal file
9
.upgradenotes/MDL-82191-2024061401255575.yml
Normal 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
|
@ -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
|
||||
*
|
||||
|
@ -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',
|
||||
|
@ -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
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user