. /** * Plan page. * * @package tool_lp * @copyright 2015 Frédéric Massart - FMCorz.net * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require(__DIR__ . '/../../../config.php'); $id = required_param('id', PARAM_INT); require_login(null, false); if (isguestuser()) { throw new require_login_exception('Guests are not allowed here.'); } $plan = \tool_lp\api::read_plan($id); $context = $plan->get_context(); $url = new moodle_url('/admin/tool/lp/plan.php', array('id' => $id)); $title = format_string($plan->get_name(), true, array('context' => $context)); $PAGE->set_context($context); $PAGE->set_pagelayout('admin'); $PAGE->set_url($url); $PAGE->set_title($title); $PAGE->set_heading($title); $output = $PAGE->get_renderer('tool_lp'); echo $output->header(); echo $output->heading($title); $page = new \tool_lp\output\plan_page($plan); echo $output->render($page); echo $output->footer();