Skip to content

Commit

Permalink
MDL-76583 core_external: Migrate external_multiple_structure class
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Jan 18, 2023
1 parent 967bed2 commit 279ae4d
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 30 deletions.
1 change: 0 additions & 1 deletion lib/external/classes/external_api.php
Expand Up @@ -24,7 +24,6 @@
use core_php_time_limit;
use external_description;
use external_function_parameters;
use external_multiple_structure;
use external_single_structure;
use external_value;
use invalid_parameter_exception;
Expand Down
50 changes: 50 additions & 0 deletions lib/external/classes/external_multiple_structure.php
@@ -0,0 +1,50 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

namespace core_external;

/**
* Bulk array description class.
*
* @package core_external
* @copyright 2009 Petr Skodak
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.0
*/
class external_multiple_structure extends external_description {

/** @var external_description content */
public $content;

/**
* Constructor
*
* @param external_description $content
* @param string $desc
* @param bool $required
* @param array $default
* @since Moodle 2.0
*/
public function __construct(
external_description $content,
$desc = '',
$required = VALUE_REQUIRED,
$default = null
) {
parent::__construct($desc, $required, $default);
$this->content = $content;
}
}
30 changes: 1 addition & 29 deletions lib/externallib.php
Expand Up @@ -48,35 +48,7 @@ class_alias(\core_external\external_api::class, 'external_api');
class_alias(\core_external\external_description::class, 'external_description');
class_alias(\core_external\external_value::class, 'external_value');
class_alias(\core_external\external_single_structure::class, 'external_single_structure');

/**
* Bulk array description class.
*
* @package core_webservice
* @copyright 2009 Petr Skodak
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.0
*/
class external_multiple_structure extends external_description {

/** @var external_description content */
public $content;

/**
* Constructor
*
* @param external_description $content
* @param string $desc
* @param bool $required
* @param array $default
* @since Moodle 2.0
*/
public function __construct(external_description $content, $desc='',
$required=VALUE_REQUIRED, $default=null) {
parent::__construct($desc, $required, $default);
$this->content = $content;
}
}
class_alias(\core_external\external_multiple_structure::class, 'external_multiple_structure');

/**
* Description of top level - PHP function parameters.
Expand Down

0 comments on commit 279ae4d

Please sign in to comment.