. // // // /////////////////////////////////////////////////////////////////////////// /** * Registration renderer. * @package moodle * @subpackage registration * @copyright 2010 Moodle Pty Ltd (http://moodle.com) * @author Jerome Mouneyrac * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class core_register_renderer extends plugin_renderer_base { /** * Display message about the benefits of registering on Moodle.org * * @return string */ public function moodleorg_registration_message() { return format_text(get_string('registermoodlenet', 'admin'), FORMAT_HTML, ['noclean' => true]); } }