Proyectos de Subversion Moodle

Rev

Rev 965 | Rev 967 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 965 Rev 966
Línea 92... Línea 92...
92
        if (empty($this->instance)) {
92
        if (empty($this->instance)) {
93
            return $this->content;
93
            return $this->content;
94
        }
94
        }
Línea 95... Línea 95...
95
 
95
 
-
 
96
        $this->content = new stdClass();
-
 
97
 
-
 
98
        if (!empty($this->config->title)) {
-
 
99
            $this->content->title =  format_text($this->config->title, FORMAT_HTML, array('filter' => true));
-
 
100
        } else {
-
 
101
            $this->content->title = get_string('cesa_notes', 'block_cesa_notes');
-
 
102
        }
96
        $this->content = new stdClass();
103
 
Línea 97... Línea 104...
97
        $this->content->text = '<div class="inline-cesa_notes-opener">' . get_string('showcesa_notes', 'block_cesa_notes') . '</div>';
104
        $this->content->text = '<div class="inline-cesa_notes-opener">' . get_string('showcesa_notes', 'block_cesa_notes') . '</div>';
Línea 98... Línea 105...
98
 
105