. /** * Web service documentation renderer. * @package core_rss * @category rss * @copyright 2010 Andrew Davis * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Web service documentation renderer extending the plugin_renderer_base class. * @package core_rss * @category rss * @copyright 2010 Andrew Davis * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class core_rss_renderer extends plugin_renderer_base { /** * Returns the html for the token reset confirmation box * @return string html */ public function user_reset_rss_token_confirmation() { $managetokenurl = '/user/managetoken.php'; $optionsyes = ['action' => 'resetrsstoken', 'confirm' => 1]; $formcontinue = new single_button(new moodle_url($managetokenurl, $optionsyes), get_string('reset')); $formcancel = new single_button(new moodle_url($managetokenurl), get_string('cancel'), 'get'); $html = $this->output->confirm(get_string('resettokenconfirmsimple', 'webservice'), $formcontinue, $formcancel); return $html; } /** * Display a user token with buttons to reset it * @param string $token The token to be displayed * @return string html code */ public function user_rss_token_box($token) { global $CFG; // Display strings. $stroperation = get_string('operation', 'webservice'); $strtoken = get_string('key', 'webservice'); $return = $this->output->heading(get_string('rss', 'rss'), 3, 'main', true); $return .= $this->output->box_start('generalbox webservicestokenui'); $return .= get_string('rsskeyshelp'); $table = new html_table(); $table->head = array($strtoken, $stroperation); $table->align = array('left', 'center'); $table->width = '100%'; $table->data = array(); if (!empty($token)) { $reset = html_writer::link(new moodle_url('/user/managetoken.php', [ 'action' => 'resetrsstoken', ]), get_string('reset')); $table->data[] = array($token, $reset); $return .= html_writer::table($table); } else { $return .= get_string('notoken', 'webservice'); } $return .= $this->output->box_end(); return $return; } }