You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
493 B
19 lines
493 B
<?php
|
|
|
|
class block_fale_conosco extends block_base {
|
|
public function init() {
|
|
$this->title = get_string('fale_conosco', 'block_fale_conosco');
|
|
}
|
|
|
|
public function get_content() {
|
|
if ($this->content !== null) {
|
|
return $this->content;
|
|
}
|
|
|
|
$this->content = new stdClass;
|
|
$this->content->text = 'The content of our SimpleHTML block!';
|
|
$this->content->footer = 'Footer here...';
|
|
|
|
return $this->content;
|
|
}
|
|
}
|
|
|