aboutsummaryrefslogtreecommitdiff
path: root/editservice.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-10-26 17:18:31 +0300
committerValentin Popov <info@valentineus.link>2017-10-26 17:18:31 +0300
commitc25f4bada67cd237e5a1e27e6c25f552330bc6ea (patch)
tree6fd5ca597b90ea6fecb98d0df4e4574c29bda329 /editservice.php
parent4f34a6db0f139370544730f539ff981124441f4b (diff)
downloadlocal_webhooks-c25f4bada67cd237e5a1e27e6c25f552330bc6ea.tar.xz
local_webhooks-c25f4bada67cd237e5a1e27e6c25f552330bc6ea.zip
Updating layers of external pages
Diffstat (limited to 'editservice.php')
-rw-r--r--editservice.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/editservice.php b/editservice.php
index 958a174..c4f68ff 100644
--- a/editservice.php
+++ b/editservice.php
@@ -23,8 +23,11 @@
*/
require_once(__DIR__ . "/../../config.php");
+require_once($CFG->libdir . "/adminlib.php");
require_once(__DIR__ . "/classes/forms.php");
+admin_externalpage_setup("managelocalplugins");
+
$serviceid = optional_param("serviceid", 0, PARAM_INT);
require_login();
@@ -79,8 +82,7 @@ $PAGE->set_heading($titlepage);
$PAGE->set_title($titlepage);
/* The page title */
-$PAGE->navbar->add(new lang_string("localplugins", "moodle"));
-$PAGE->navbar->add(new lang_string("pluginname", "local_webhooks"));
+$PAGE->navbar->add(new lang_string("pluginname", "local_webhooks"), new moodle_url("/admin/settings.php", array("section" => "local_webhooks")));
$PAGE->navbar->add(new lang_string("managerservice", "local_webhooks"), $managerservice);
$PAGE->navbar->add($titlepage);
echo $OUTPUT->header();