. /** * Recourse module like helper functions * * @package moodlecore * @copyright 2009 Petr Skoda (http://skodak.org) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** Try the best way */ define('RESOURCELIB_DISPLAY_AUTO', 0); /** Display using object tag */ define('RESOURCELIB_DISPLAY_EMBED', 1); /** Display inside frame */ define('RESOURCELIB_DISPLAY_FRAME', 2); /** Display normal link in new window */ define('RESOURCELIB_DISPLAY_NEW', 3); /** Force download of file instead of display */ define('RESOURCELIB_DISPLAY_DOWNLOAD', 4); /** Open directly */ define('RESOURCELIB_DISPLAY_OPEN', 5); /** Open in "emulated" pop-up without navigation */ define('RESOURCELIB_DISPLAY_POPUP', 6); /** Legacy files not needed or new resource */ define('RESOURCELIB_LEGACYFILES_NO', 0); /** Legacy files conversion marked as completed */ define('RESOURCE_LEGACYYFILES_DONE', 1); /** Legacy files conversion in progress*/ define('RESOURCELIB_LEGACYFILES_ACTIVE', 2); /** * Returns list of available display options * @param array $enabled list of options enabled in module configuration * @param int $current current dispaly options for existing instances * @return array of key=>name pairs */ function resourcelib_get_displayoptions(array $enabled, $current=null) { if (is_number($current)) { $enabled[] = $current; } $options = array(RESOURCELIB_DISPLAY_AUTO => get_string('displayauto', 'resource'), RESOURCELIB_DISPLAY_EMBED => get_string('displayembed', 'resource'), RESOURCELIB_DISPLAY_FRAME => get_string('displayframe', 'resource'), RESOURCELIB_DISPLAY_NEW => get_string('displaynew', 'resource'), RESOURCELIB_DISPLAY_DOWNLOAD => get_string('displaydownload', 'resource'), RESOURCELIB_DISPLAY_OPEN => get_string('displayopen', 'resource'), RESOURCELIB_DISPLAY_POPUP => get_string('displaypopup', 'resource')); $result = array(); foreach ($options as $key=>$value) { if (in_array($key, $enabled)) { $result[$key] = $value; } } if (empty($result)) { // there should be always something in case admin misconfigures module $result[RESOURCELIB_DISPLAY_OPEN] = $options[RESOURCELIB_DISPLAY_OPEN]; } return $result; } /** * Tries to guess correct mimetype for arbitrary URL * @param string $fullurl * @return string mimetype */ function resourcelib_guess_url_mimetype($fullurl) { global $CFG; require_once("$CFG->libdir/filelib.php"); if (preg_match("|^(.*)/[a-z]*file.php(\?file=)?(/[^&\?]*)|", $fullurl, $matches)) { // remove the special moodle file serving hacks so that the *file.php is ignored $fullurl = $matches[1].$matches[3]; } if (strpos($fullurl, '.php')){ // we do not really know what is in general php script return 'text/html'; } else if (substr($fullurl, -1) === '/') { // directory index (http://example.com/smaples/) return 'text/html'; } else if (strpos($fullurl, '//') !== false and substr_count($fullurl, '/') == 2) { // just a host name (http://example.com), solves Australian servers "audio" problem too return 'text/html'; } else { // ok, this finally looks like a real file return mimeinfo('type', $fullurl); } } /** * Returns image embedding html. * @param string $fullurl * @param string $title * @return string html */ function resourcelib_embed_image($fullurl, $title) { $code = ''; $code .= '
'; $code .= "\"\""; $code .= '
'; return $code; } /** * Returns mp3 embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_mp3($fullurl, $title, $clicktoopen) { global $CFG, $OUTPUT, $PAGE; $c = $OUTPUT->resource_mp3player_colors(); // You can set this up in your theme/xxx/config.php $c .= '&volText='.get_string('vol', 'resource').'&panText='.get_string('pan','resource'); $id = 'filter_mp3_'.time(); //we need something unique because it might be stored in text cache $ufoargs = array('movie' => $CFG->wwwroot.'/lib/mp3player/mp3player.swf?src='.addslashes_js($fullurl), 'width' => 600, 'height' => 70, 'majorversion' => 6, 'build' => 40, 'flashvars' => $c, 'quality' => 'high'); // If we have Javascript, use UFO to embed the MP3 player, otherwise depend on plugins $code = << OET; $PAGE->requires->js('/lib/ufo.js'); $code .= $PAGE->requires->js_function_call('M.util.create_UFO_object', array($id, $ufoargs)); return $code; } /** * Returns flash video embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_flashvideo($fullurl, $title, $clicktoopen) { global $CFG, $PAGE; $id = 'filter_flv_'.time(); //we need something unique because it might be stored in text cache $ufoargs = array('movie' => $CFG->wwwroot.'/filter/mediaplugin/flvplayer.swf?file='.addslashes_js($fullurl), 'width' => 600, 'height' => 400, 'majorversion' => 6, 'build' => 40, 'allowscriptaccess' => 'never', 'allowfullscreen' => 'true', 'quality' => 'high'); // If we have Javascript, use UFO to embed the FLV player, otherwise depend on plugins $code = << EOT; $PAGE->requires->js('/lib/ufo.js'); $code .= $PAGE->requires->js_function_call('M.util.create_UFO_object', array($id, $ufoargs)); return $code; } /** * Returns flash embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_flash($fullurl, $title, $clicktoopen) { $code = << $clicktoopen EOT; return $code; } /** * Returns ms media embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_mediaplayer($fullurl, $title, $clicktoopen) { $code = << $clicktoopen EOT; return $code; } /** * Returns quicktime embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_quicktime($fullurl, $title, $clicktoopen) { $code = << $clicktoopen EOT; return $code; } /** * Returns mpeg embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_mpeg($fullurl, $title, $clicktoopen) { $code = << $clicktoopen EOT; return $code; } /** * Returns real media embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_real($fullurl, $title, $clicktoopen) { $code = << $clicktoopen EOT; return $code; } /** * Returns general link or file embedding html. * @param string $fullurl * @param string $title * @param string $clicktoopen * @return string html */ function resourcelib_embed_general($fullurl, $title, $clicktoopen, $mimetype) { global $CFG, $PAGE; $iframe = false; // IE can not embed stuff properly if stored on different server // that is why we use iframe instead, unfortunately this tag does not validate // in xhtml strict mode if ($mimetype === 'text/html' and check_browser_version('MSIE', 5)) { if (preg_match('(^https?://[^/]*)', $fullurl, $matches)) { if (strpos($CFG->wwwroot, $matches[0]) !== 0) { $iframe = true; } } } if ($iframe) { $code = << EOT; } else { $code = << $clicktoopen EOT; $PAGE->requires->js_init_call('M.util.init_maximised_embed', array('resourceobject'), true); } return $code; }