Replaces URLs associated with a whitelisted group of providers with embedded media content based on the oEmbed format.
Simply add a URL on it's own line for one of the supported providers into a forum post, page, or comment text body and it will replace the URL with embedded media from the provider in it's place.
Hmmm..
https://twitter.com/THErealDVORAK/status/354694500976820225
Ya, that's sounds about right.
Use the BBCode [embed]url here[/embed]
to embed anywhere in your text body:
Lorem ipsum dolor [embed]https://www.youtube.com/watch?v=vx50HspXtWA[/embed] sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
The embed BBCode also takes height and width attributes:
[embed width="200" height="200"]url here[/embed]
- HTML (formatted by CKEditor)
- BBCode
- Plain/None
- Forum posts
- Comments
- News
- Pages
- Flickr
- YouTube
- Hulu
- blip
- Vimeo
- Smugmug
- Viddler
- qik
- Revision3
- Photobucket
- Slideshare
- Scribd
- SoundCloud
- Funny or Die
- Download, unpack and move the oembed folder to your plugin directory.
- Install the plugin in the administration panel.
- Check to see that everything is configured to your preference.
oembed_parser( string $area, int $item, string $text [, int $pageref, string $parser, array $whitelist] )
Replaces URLs associated with a whitelisted group of providers with embedded media content.
$area
: The area you are parsing in. This is only for caching and can be anything you want or something like extension name$item
: The item ID or something to reference an item in some way. This is only for caching.$text
: The text body to parse URLs out of$pageref
: The page number or offset. This is for caching only. This allows the function to grab only the needed visible items from the cache.$parser
: The parser this text bodies uses. This defaults to $cfg['parser'] if left null$whitelist
: The list of valid URL expressions and their source as the value. Defaults to $oembed_whitelisted_providersreturn
: Text body from $text with the URLs now as embedded content
Removes cached items that are no longer found in the text body.
$area
: Area that was used for parsing the links
Removes cached URLs for an item
$area
: Area$item
: Item$pageref
: Page reference