芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/mod/forum/classes/output/email/renderer_textemail.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(); /** * 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_textemail extends renderer { /** * The template name for this renderer. * * @return string */ public function forum_post_template() { return 'forum_post_email_textemail'; } /** * The plaintext version of the e-mail message. * * @param \stdClass $cm * @param \stdClass $post * @return string */ public function format_message_text($cm, $post) { $message = file_rewrite_pluginfile_urls($post->message, 'pluginfile.php', \context_module::instance($cm->id)->id, 'mod_forum', 'post', $post->id); return format_text_email($message, $post->messageformat); } /** * The plaintext 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, "text"); } }