Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
.
/**
* Provides the {@link core_form\external} class.
*
* @package core_form
* @category external
* @copyright 2017 David Mudrák
* @copyright 2016 Jonathon Fowler
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core_form;
use external_api;
use external_function_parameters;
use external_multiple_structure;
use external_single_structure;
use external_value;
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir.'/externallib.php');
/**
* Implements the external functions provided by the core_form subsystem.
*
* @copyright 2017 David Mudrak
* @copyright 2016 Jonathon Fowler
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class external extends external_api {
/**
* Describes the input paramaters of the get_filetypes_browser_data external function.
*
* @return external_description
*/
public static function get_filetypes_browser_data_parameters() {
return new external_function_parameters([
'onlytypes' => new external_value(PARAM_RAW, 'Limit the browser to the given groups and extensions', VALUE_DEFAULT, ''),
'allowall' => new external_value(PARAM_BOOL, 'Allows to select All file types, does not apply with onlytypes are set.',
VALUE_DEFAULT, true),
'current' => new external_value(PARAM_RAW, 'Current types that should be selected.', VALUE_DEFAULT, ''),
]);
}
/**
* Implements the get_filetypes_browser_data external function.
*
* @param string $onlytypes Allow selection from these file types only; for example 'web_image'.
* @param bool $allowall Allow to select 'All file types'. Does not apply if onlytypes is set.
* @param string $current Current values that should be selected.
* @return object
*/
public static function get_filetypes_browser_data($onlytypes, $allowall, $current) {
$params = self::validate_parameters(self::get_filetypes_browser_data_parameters(),
compact('onlytypes', 'allowall', 'current'));
$util = new filetypes_util();
return ['groups' => $util->data_for_browser($params['onlytypes'], $params['allowall'], $params['current'])];
}
/**
* Describes the output of the get_filetypes_browser_data external function.
*
* @return external_description
*/
public static function get_filetypes_browser_data_returns() {
$type = new external_single_structure([
'key' => new external_value(PARAM_RAW, 'The file type identifier'),
'name' => new external_value(PARAM_RAW, 'The file type name'),
'selected' => new external_value(PARAM_BOOL, 'Should it be marked as selected'),
'ext' => new external_value(PARAM_RAW, 'The file extension associated with the file type'),
]);
$group = new external_single_structure([
'key' => new external_value(PARAM_RAW, 'The file type group identifier'),
'name' => new external_value(PARAM_RAW, 'The file type group name'),
'selectable' => new external_value(PARAM_BOOL, 'Can it be marked as selected'),
'selected' => new external_value(PARAM_BOOL, 'Should it be marked as selected'),
'ext' => new external_value(PARAM_RAW, 'The list of file extensions associated with the group'),
'expanded' => new external_value(PARAM_BOOL, 'Should the group start as expanded or collapsed'),
'types' => new external_multiple_structure($type, 'List of file types in the group'),
]);
return new external_single_structure([
'groups' => new external_multiple_structure($group, 'List of file type groups'),
]);
}
}