芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/mod/forum/classes/output/email/renderer.php
. /** * Forum post renderable. * * @package mod_forum * @copyright 2015 Andrew Nicols
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace mod_forum\output\email; defined('MOODLE_INTERNAL') || die(); require_once(__DIR__ . '/../../../renderer.php'); /** * Forum post renderable. * * @since Moodle 3.0 * @package mod_forum * @copyright 2015 Andrew Nicols
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class renderer extends \mod_forum_renderer { /** * The template name for this renderer. * * @return string */ public function forum_post_template() { return 'forum_post_email_htmlemail'; } /** * The HTML version of the e-mail message. * * @param \stdClass $cm * @param \stdClass $post * @return string */ public function format_message_text($cm, $post) { $context = \context_module::instance($cm->id); $message = file_rewrite_pluginfile_urls( $post->message, 'pluginfile.php', $context->id, 'mod_forum', 'post', $post->id, [ 'includetoken' => true, ]); $options = new \stdClass(); $options->para = true; $options->context = $context; return format_text($message, $post->messageformat, $options); } /** * The HTML version of the attachments list. * * @param \stdClass $cm * @param \stdClass $post * @return string */ public function format_message_attachments($cm, $post) { return forum_print_attachments($post, $cm, "html"); } }