diff options
author | Valentin Popov <info@valentineus.link> | 2017-10-24 03:13:48 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-10-24 03:13:48 +0300 |
commit | a8ad95f44e1f9f9410b38f69187d843b2b806928 (patch) | |
tree | 27a3c9b9410d5dc28cbbdb43acf8c50101f59801 | |
parent | 2bee24931a95d0b5e0b2a95a15d2b30088ba562e (diff) | |
download | local_webhooks-a8ad95f44e1f9f9410b38f69187d843b2b806928.tar.xz local_webhooks-a8ad95f44e1f9f9410b38f69187d843b2b806928.zip |
Refactoring the service editor
-rw-r--r-- | editservice.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/editservice.php b/editservice.php index 7b2fcb7..5c6d1f6 100644 --- a/editservice.php +++ b/editservice.php @@ -40,7 +40,7 @@ $context = context_system::instance(); $PAGE->set_context($context); /* Preparing a template for data */ -$titlepage = new lang_string("editserviceadds", "local_webhooks"); +$titlepage = new lang_string("externalservice", "webservice"); $servicerecord = new stdClass; /* Create an editing form */ @@ -54,7 +54,6 @@ if ($mform->is_cancelled()) { /* Getting the data */ if ($idediting = boolval($idservice)) { $servicerecord = $DB->get_record("local_webhooks_service", array("id" => $idservice), "*", MUST_EXIST); - $titlepage = new lang_string("editserviceedits", "local_webhooks"); $mform->set_data($servicerecord); } @@ -76,13 +75,13 @@ if ($data = $mform->get_data()) { /* Page template */ $PAGE->set_pagelayout("admin"); -$PAGE->set_title($titlepage); $PAGE->set_heading($titlepage); +$PAGE->set_title($titlepage); /* The page title */ -$PAGE->navbar->add(new lang_string("local")); +$PAGE->navbar->add(new lang_string("local", "moodle")); $PAGE->navbar->add(new lang_string("pluginname", "local_webhooks")); -$PAGE->navbar->add(new lang_string("managementmanager", "local_webhooks"), $managerservice); +$PAGE->navbar->add(new lang_string("managerservice", "local_webhooks"), $managerservice); $PAGE->navbar->add($titlepage); echo $OUTPUT->header(); |