芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/oauth2/endpoints.php
. /** * OAuth 2 Endpoing Configuration page. * * @package tool_oauth2 * @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../../../config.php'); require_once($CFG->libdir.'/adminlib.php'); require_once($CFG->libdir.'/tablelib.php'); $PAGE->set_url('/admin/tool/oauth2/endpoints.php', ['issuerid' => required_param('issuerid', PARAM_INT)]); $PAGE->set_context(context_system::instance()); $PAGE->set_pagelayout('admin'); $strheading = get_string('pluginname', 'tool_oauth2'); $PAGE->set_title($strheading); $PAGE->set_heading($strheading); require_login(); require_capability('moodle/site:config', context_system::instance()); $renderer = $PAGE->get_renderer('tool_oauth2'); $action = optional_param('action', '', PARAM_ALPHAEXT); $issuerid = required_param('issuerid', PARAM_INT); $endpointid = optional_param('endpointid', '', PARAM_INT); $endpoint = null; $mform = null; $issuer = \core\oauth2\api::get_issuer($issuerid); if (!$issuer) { print_error('invaliddata'); } $PAGE->navbar->override_active_url(new moodle_url('/admin/tool/oauth2/issuers.php'), true); if (!empty($endpointid)) { $endpoint = \core\oauth2\api::get_endpoint($endpointid); } if ($action == 'edit') { if ($endpoint) { $strparams = [ 'issuer' => s($issuer->get('name')), 'endpoint' => s($endpoint->get('name')) ]; $PAGE->navbar->add(get_string('editendpoint', 'tool_oauth2', $strparams)); } else { $PAGE->navbar->add(get_string('createnewendpoint', 'tool_oauth2', s($issuer->get('name')))); } $mform = new \tool_oauth2\form\endpoint(null, ['persistent' => $endpoint, 'issuerid' => $issuerid]); } if ($mform && $mform->is_cancelled()) { redirect(new moodle_url('/admin/tool/oauth2/endpoints.php', ['issuerid' => $issuerid])); } else if ($action == 'edit') { if ($data = $mform->get_data()) { try { if (!empty($data->id)) { core\oauth2\api::update_endpoint($data); } else { core\oauth2\api::create_endpoint($data); } redirect($PAGE->url, get_string('changessaved'), null, \core\output\notification::NOTIFY_SUCCESS); } catch (Exception $e) { redirect($PAGE->url, $e->getMessage(), null, \core\output\notification::NOTIFY_ERROR); } } else { echo $OUTPUT->header(); if ($endpoint) { $strparams = [ 'issuer' => s($issuer->get('name')), 'endpoint' => s($endpoint->get('name')) ]; echo $OUTPUT->heading(get_string('editendpoint', 'tool_oauth2', $strparams)); } else { echo $OUTPUT->heading(get_string('createnewendpoint', 'tool_oauth2', s($issuer->get('name')))); } $mform->display(); echo $OUTPUT->footer(); } } else if ($action == 'delete') { if (!optional_param('confirm', false, PARAM_BOOL)) { $continueparams = [ 'action' => 'delete', 'issuerid' => $issuerid, 'endpointid' => $endpointid, 'sesskey' => sesskey(), 'confirm' => true ]; $continueurl = new moodle_url('/admin/tool/oauth2/endpoints.php', $continueparams); $cancelurl = new moodle_url('/admin/tool/oauth2/endpoints.php'); echo $OUTPUT->header(); $strparams = [ 'issuer' => s($issuer->get('name')), 'endpoint' => s($endpoint->get('name')) ]; echo $OUTPUT->confirm(get_string('deleteendpointconfirm', 'tool_oauth2', $strparams), $continueurl, $cancelurl); echo $OUTPUT->footer(); } else { require_sesskey(); core\oauth2\api::delete_endpoint($endpointid); redirect($PAGE->url, get_string('endpointdeleted', 'tool_oauth2'), null, \core\output\notification::NOTIFY_SUCCESS); } } else { echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('endpointsforissuer', 'tool_oauth2', s($issuer->get('name')))); $endpoints = core\oauth2\api::get_endpoints($issuer); echo $renderer->endpoints_table($endpoints, $issuerid); $addurl = new moodle_url('/admin/tool/oauth2/endpoints.php', ['action' => 'edit', 'issuerid' => $issuerid]); echo $renderer->single_button($addurl, get_string('createnewendpoint', 'tool_oauth2', s($issuer->get('name')))); echo $OUTPUT->footer(); }