diff --git a/blocks/loancalc/block_loancalc.php b/blocks/loancalc/block_loancalc.php deleted file mode 100644 index 9ae720003a3..00000000000 --- a/blocks/loancalc/block_loancalc.php +++ /dev/null @@ -1,203 +0,0 @@ -title = get_string('pluginname','block_loancalc'); - $this->content_type = BLOCK_TYPE_TEXT; - $this->version = 2007101509; - } - - function get_content() { - global $CFG, $OUTPUT; - - $calc = $OUTPUT->pix_url('i/calc'); - - $this->content->text = ' - -
'; - $this->content->footer = ''; - - return $this->content; - - } -} - diff --git a/blocks/loancalc/lang/en/block_loancalc.php b/blocks/loancalc/lang/en/block_loancalc.php deleted file mode 100644 index 18db37b4775..00000000000 --- a/blocks/loancalc/lang/en/block_loancalc.php +++ /dev/null @@ -1,34 +0,0 @@ -. - -/** - * Strings for component 'block_loancalc', language 'en', branch 'MOODLE_20_STABLE' - * - * @package block_loancalc - * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later - */ - -$string['amountofloan'] = 'Amount of loan'; -$string['fortnightly'] = 'Fortnightly'; -$string['interestrate'] = 'Interest rate'; -$string['loanterm'] = 'Loan term (years)'; -$string['monthly'] = 'Monthly'; -$string['pluginname'] = 'Loan calculator'; -$string['repaymentamount'] = 'Repayment amount'; -$string['repaymentfreq'] = 'Repayment frequency'; -$string['weekly'] = 'Weekly';