sometext = $sometext; } /** * Export this data so it can be used as the context for a mustache template. * * @return stdClass */ public function export_for_template(renderer_base $output) { $data = new stdClass(); $data->sometext = $this->sometext; return $data; } }