forked from danmarsden/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-29624 Media embedding system, part 2: preview in file picker
The JavaScript file picker API shows a preview of the media file you have chosen. This preview facility now uses an iframe, in order not to duplicate the embed code in JavaScript. The iframe uses the standard embed API.
- Loading branch information
1 parent
daefd6e
commit f4e7ba5
Showing
3 changed files
with
60 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
lib/editor/tinymce/tiny_mce/3.5/plugins/moodlemedia/preview.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* Provides A/V preview features for the TinyMCE editor Moodle Media plugin. | ||
* The preview is included in an iframe within the popup dialog. | ||
* @package editor | ||
* @subpackage tinymce | ||
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
require(dirname(__FILE__) . '/../../../../../../../config.php'); | ||
require_once($CFG->libdir . '/filelib.php'); | ||
|
||
// Must be logged in | ||
require_login(); | ||
|
||
// Require path to draftfile.php file | ||
$path = required_param('path', PARAM_PATH); | ||
|
||
// Now output this file which is super-simple | ||
$PAGE->set_pagelayout('embedded'); | ||
$PAGE->set_url(new moodle_url('/lib/editor/tinymce/tiny_mce/3.4.6/plugins/moodlemedia/preview.php', | ||
array('path' => $path))); | ||
$PAGE->set_context(context_system::instance()); | ||
$PAGE->add_body_class('core_media_preview'); | ||
|
||
echo $OUTPUT->header(); | ||
|
||
$mediarenderer = $PAGE->get_renderer('core', 'media'); | ||
$url = new moodle_url('/draftfile.php/' . $path); | ||
if ($mediarenderer->can_embed_url($url)) { | ||
echo $mediarenderer->embed_url($url); | ||
} | ||
|
||
echo $OUTPUT->footer(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters