From e1b8bdf8e3859e8de8239f43e653a461639d80da Mon Sep 17 00:00:00 2001 From: dhawes <dhawes> Date: Sun, 24 Oct 2004 15:52:25 +0000 Subject: [PATCH] some spacing added --- blocks/moodleblock.class.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/blocks/moodleblock.class.php b/blocks/moodleblock.class.php index 2010bc4a7d..48a5bc4bb4 100644 --- a/blocks/moodleblock.class.php +++ b/blocks/moodleblock.class.php @@ -293,17 +293,18 @@ class MoodleBlock { // If yes, then it is assumed that the block WILL USE per-instance configuration return false; } + function instance_config_print() { // Default behavior: print the config_instance.html file - // You don't need to override this if you 're satisfied with the above + // You don't need to override this if you're satisfied with the above if(!$this->instance_allow_multiple()) { return false; } global $CFG, $USER, $THEME; - if(is_file($CFG->dirroot.'/blocks/'.$this->name().'/config_instance.html')) { + if(is_file($CFG->dirroot.'/blocks/'. $this->name() .'/config_instance.html')) { print_simple_box_start('center', '', $THEME->cellheading); - include($CFG->dirroot.'/blocks/'.$this->name().'/config_instance.html'); + include($CFG->dirroot.'/blocks/'. $this->name() .'/config_instance.html'); print_simple_box_end(); } else { @@ -312,6 +313,7 @@ class MoodleBlock { return true; } + function instance_config_save($data) { $data = stripslashes_recursive($data); $this->config = $data; -- 2.39.5