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.
20 lines
447 B
20 lines
447 B
6 years ago
|
<?php
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
class block_escola_modelo extends block_base
|
||
|
{
|
||
|
public function init() {
|
||
|
$this->title = get_string('escola_modelo', 'block_escola_modelo');
|
||
|
}
|
||
|
public function get_content() {
|
||
|
if ($this->content !== null) {
|
||
|
return $this->content;
|
||
|
}
|
||
|
|
||
|
$this->content = new stdClass;
|
||
|
$this->content->text = '';
|
||
|
|
||
|
return $this->content;
|
||
|
}
|
||
|
}
|