Skip to content

Commit

Permalink
MDL-27253 add default swf size and allow #d=100x50 URL resizing in mo…
Browse files Browse the repository at this point in the history
…d/url
  • Loading branch information
skodak committed Apr 21, 2011
1 parent 4452ed6 commit 7774aca
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions lib/resourcelib.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ function resourcelib_guess_url_mimetype($fullurl) {
$fullurl = $matches[1].$matches[3];
}

if (preg_match("|^(.*)#.*|", $fullurl, $matches)) {
// ignore all anchors
$fullurl = $matches[1];
}

if (strpos($fullurl, '.php')){
// we do not really know what is in general php script
return 'text/html';
Expand Down Expand Up @@ -285,17 +290,25 @@ function resourcelib_embed_flashvideo($fullurl, $title, $clicktoopen) {
* @return string html
*/
function resourcelib_embed_flash($fullurl, $title, $clicktoopen) {
if (preg_match('/[#\?]d=([\d]{1,4}%?)x([\d]{1,4}%?)/', $fullurl, $matches)) {
$width = $matches[1];
$height = $matches[2];
} else {
$width = 400;
$height = 300;
}

$code = <<<EOT
<div class="resourcecontent resourceswf">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="$width" height="$height">
<param name="movie" value="$fullurl" />
<param name="autoplay" value="true" />
<param name="loop" value="true" />
<param name="controller" value="true" />
<param name="scale" value="aspect" />
<param name="base" value="." />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="$fullurl">
<object type="application/x-shockwave-flash" data="$fullurl" width="$width" height="$height">
<param name="controller" value="true" />
<param name="autoplay" value="true" />
<param name="loop" value="true" />
Expand Down
2 changes: 1 addition & 1 deletion mod/url/locallib.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ function url_get_final_display_type($url) {
'audio/mp3', 'audio/x-realaudio-plugin', 'x-realaudio-plugin', // audio formats,
);

$mimetype = mimeinfo('type', $url->externalurl);
$mimetype = resourcelib_guess_url_mimetype($url->externalurl);

if (in_array($mimetype, $download)) {
return RESOURCELIB_DISPLAY_DOWNLOAD;
Expand Down

0 comments on commit 7774aca

Please sign in to comment.