Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
Base class for media players. More...
Public Member Functions | |
embed ($urls, $name, $width, $height, $options) | |
Generates code required to embed the player. | |
get_embeddable_markers () | |
Lists keywords that must be included in a url that can be embedded with this player. | |
get_rank () | |
Gets the ranking of this player. | |
get_supported_extensions () | |
Gets the list of file extensions supported by this media player. | |
is_enabled () | |
list_supported_urls (array $urls, array $options=array()) | |
Given a list of URLs, returns a reduced array containing only those URLs which are supported by this player. | |
setup ($page) | |
Setup page requirements. | |
supports ($usedextensions=[]) | |
Returns human-readable string of supported file/link types for the "Manage media players" page. | |
Static Public Member Functions | |
static | compare_by_rank () |
Public Attributes | |
const | LINKPLACEHOLDER = '<!--LINKFALLBACK-->' |
Placeholder text used to indicate where the link fallback is placed. | |
const | PLACEHOLDER = '<!--FALLBACK-->' |
Placeholder text used to indicate where the fallback content is placed within a result. | |
Protected Member Functions | |
get_name ($name, $urls) | |
Obtains suitable name for media. | |
Static Protected Member Functions | |
static | pick_video_size (&$width, &$height) |
Utility function that sets width and height to defaults if not specified as a parameter to the function (will be specified either if, (a) the calling code passed it, or (b) the URL included it). | |
Base class for media players.
Media players return embed HTML for a particular way of playing back audio or video (or another file type).
|
static |
|
abstract |
Generates code required to embed the player.
The returned code contains a placeholder comment '' (constant core_media_player\PLACEHOLDER) which indicates the location where fallback content should be placed in the event that this type of player is not supported by user browser.
The $urls parameter includes one or more alternative media formats that are supported by this player. It does not include formats that aren't supported (see list_supported_urls).
The $options array contains key-value pairs. See OPTION_xx constants for documentation of standard option(s).
array | $urls | URLs of media files |
string | $name | Display name; '' to use default |
int | $width | Optional width; 0 to use default |
int | $height | Optional height; 0 to use default |
array | $options | Options array |
string | HTML code for embed |
Reimplemented in core_media_player_external, media_html5audio_plugin, media_html5video_plugin, and media_videojs_plugin.
core_media_player::get_embeddable_markers | ( | ) |
Lists keywords that must be included in a url that can be embedded with this player.
Any such keywords should be added to the array.
For example if this player supports FLV and F4V files then it should add '.flv' and '.f4v' to the array. (The check is not case-sensitive.)
Default handling calls the get_supported_extensions function, so players only need to override this if they don't implement get_supported_extensions.
This is used to improve performance when matching links in the media filter.
array | Array of keywords to add to the embeddable markers list |
Reimplemented in media_videojs_plugin, media_vimeo_plugin, and media_youtube_plugin.
|
protected |
Obtains suitable name for media.
Uses specified name if there is one, otherwise makes one up.
string | $name | User-specified name ('' if none) |
array | $urls | Array of moodle_url used to make up name |
string | Name |
|
abstract |
Gets the ranking of this player.
This is an integer used to decide which player to use (after applying other considerations such as which ones the user has disabled).
This function returns the default rank that can be adjusted by the administrator on the Manage media players page.
int | Rank (higher is better) |
Reimplemented in media_html5audio_plugin, media_html5video_plugin, media_videojs_plugin, media_vimeo_plugin, and media_youtube_plugin.
core_media_player::get_supported_extensions | ( | ) |
Gets the list of file extensions supported by this media player.
Note: This is only required for the default implementations of list_supported_urls(), get_embeddable_markers() and supports(). If you override these functions to determine supported URLs in some way other than by extension, then this function is not necessary.
array | Array of strings (extension not including dot e.g. '.mp3') |
Reimplemented in core_media_player_native, media_html5audio_plugin, media_html5video_plugin, and media_videojs_plugin.
core_media_player::is_enabled | ( | ) |
core_media_player::list_supported_urls | ( | array | $urls, |
array | $options = array() ) |
Given a list of URLs, returns a reduced array containing only those URLs which are supported by this player.
(Empty if none.)
array | $urls | Array of moodle_url |
array | $options | Options (same as will be passed to embed) |
array | Array of supported moodle_url |
Reimplemented in core_media_player_external, core_media_player_native, media_html5audio_plugin, media_html5video_plugin, media_videojs_plugin, and media_youtube_plugin.
|
staticprotected |
Utility function that sets width and height to defaults if not specified as a parameter to the function (will be specified either if, (a) the calling code passed it, or (b) the URL included it).
int | $width | Width passed to function (updated with final value) |
int | $height | Height passed to function (updated with final value) |
Reimplemented in media_html5video_plugin, and media_videojs_plugin.
core_media_player::setup | ( | $page | ) |
Setup page requirements.
The typical javascript requirements MUST not take action on the content directly. They are meant to load the required libraries and listen to events in order to know when to take action. The role of this method is not to provide a way for plugins to look for content to embed on the page. The self::embed() method is meant to be used for that.
moodle_page | $page | The page we are going to add requirements to. |
Reimplemented in media_videojs_plugin.
core_media_player::supports | ( | $usedextensions = [] | ) |
Returns human-readable string of supported file/link types for the "Manage media players" page.
array | $usedextensions | extensions that should NOT be highlighted |
string |
Reimplemented in media_videojs_plugin.
const core_media_player::LINKPLACEHOLDER = '<!--LINKFALLBACK-->' |
Placeholder text used to indicate where the link fallback is placed.
No other players will apply to it but it will be converted to the link in the end (unless prevented by OPTION_NO_LINK).