aboutsummaryrefslogtreecommitdiff
path: root/restorebackup.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-11-01 23:36:09 +0300
committerValentin Popov <info@valentineus.link>2018-11-02 00:07:14 +0300
commitd8f3a9f3edf66fad0af84a703e39e45911f37d85 (patch)
treefb73b9abcb557b7f86d026a1294315c958e79432 /restorebackup.php
parentf9772b1fb97b81468793388ed8af3c06f4f3e279 (diff)
downloadlocal_webhooks-d8f3a9f3edf66fad0af84a703e39e45911f37d85.tar.xz
local_webhooks-d8f3a9f3edf66fad0af84a703e39e45911f37d85.zip
Formatting code and eliminating possible errors
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'restorebackup.php')
-rw-r--r--restorebackup.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/restorebackup.php b/restorebackup.php
index ab35b95..2c0cb39 100644
--- a/restorebackup.php
+++ b/restorebackup.php
@@ -22,18 +22,18 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
-require_once(__DIR__ . "/../../config.php");
-require_once(__DIR__ . "/classes/service_form.php");
-require_once(__DIR__ . "/lib.php");
+require_once(__DIR__ . '/../../config.php');
+require_once(__DIR__ . '/classes/service_form.php');
+require_once(__DIR__ . '/lib.php');
-require_once($CFG->libdir . "/adminlib.php");
+require_once($CFG->libdir . '/adminlib.php');
/* Link generation */
-$baseurl = new moodle_url("/local/webhooks/restorebackup.php");
-$managerservice = new moodle_url("/local/webhooks/index.php");
+$baseurl = new moodle_url('/local/webhooks/restorebackup.php');
+$managerservice = new moodle_url('/local/webhooks/index.php');
/* Configure the context of the page */
-admin_externalpage_setup("local_webhooks", "", null, $baseurl, array());
+admin_externalpage_setup('local_webhooks', '', null, $baseurl);
$context = context_system::instance();
/* Create an editing form */
@@ -46,13 +46,13 @@ if ($mform->is_cancelled()) {
/* Processing the received file */
if ($data = $mform->get_data()) {
- $content = $mform->get_file_content("backupfile");
+ $content = $mform->get_file_content('backupfile');
local_webhooks_restore_backup($content);
- redirect($managerservice, new lang_string("restorefinished", "moodle"));
+ redirect($managerservice, new lang_string('restorefinished', 'moodle'));
}
/* The page title */
-$titlepage = new lang_string("backup", "moodle");
+$titlepage = new lang_string('backup', 'moodle');
$PAGE->navbar->add($titlepage);
$PAGE->set_heading($titlepage);
$PAGE->set_title($titlepage);