tasinttttttt / oembed
A kirby 3 oEmbed field
Installs: 98
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:kirby-plugin
pkg:composer/tasinttttttt/oembed
Requires
- php: >=7.1.0
- getkirby/composer-installer: ^1.1
This package is auto-updated.
Last update: 2025-12-28 19:00:26 UTC
README
Adds oEmbed to kirby.
Installation
- unzip master.zip as folder
site/plugins/oembedor git submodule add https://github.com/tasinttttttt/kirby-oembed.git site/plugins/oembedorcomposer require tasinttttttt/oembed
Setup
In Blueprint:
myfield: type: oembed title: My oEmbed Field
In File:
... Myfield: - https://www.youtube.com/watch?v=M6zR09nn9gE ...
In Template:
<?php // Import css and js to render iframes echo css('media/plugins/tasinttttttt/oembed/oembed.css'); echo js('media/plugins/tasinttttttt/oembed/oembed.js'); // Necessary to get access field methods. $oembed = $page->myfield()->toOembed(); // Outputs an iframe with clickable thumbnail and autoplay echo $oembed->getEmbed();
Template Methods
You need to call $page->fieldname()->toOembed() to get access to methods.
| Method | Return Type | Description |
|---|---|---|
getData() |
array |
Returns the full json response. |
getEmbed() |
string |
Returns a clickable html element with thumbnail and iframe. |
getEmbedCode($safe = false) |
string |
Returns the embed code., $safe determines whether the output has escaped html or not. Use at your own risk. |
getEmbedUrl() |
string |
Returns the embed url. |
getTitle() |
string |
Returns the title if available. |
getDescription() |
string |
Returns the description if available. |
getProvider() |
||
getThumbnail() |
array |
Returns an array with thumbnail information. Keys are: thumbnail_url, thumbnail_width, thumbnail_height. All keys are returned, but all may not contain data. |
getId() |
string |
Returns the id if available. (ex. http://youtube.com/watch?v=ferZnZ0_rSM returns ferZnZ0_rSM) |
getKey($key) |
mixed |
Returns the value for the provided $key, if available. |
Static Methods
| Method | Return Type | Description |
|---|---|---|
Oembed::getIdByUrl($url) |
string |
Returns an embed id if available (ex. http://youtube.com/watch?v=ferZnZ0_rSM returns ferZnZ0_rSM ) |
Oembed::getProviderByUrl($url) |
string |
Returns the kind of provider (youtube, vimeo, soundcloud, twitch) for the provided $url. |
Oembed::getOembedUrl($url) |
string |
Returns the oembed url for the provided $url. |
Oembed::getEmbedCodeByUrl($url) |
string |
Returns the embed code for the provided $key, if available. |
Oembed::getOembedJsonByUrl($url) |
array |
Returns the full json oembed response as an array. Throws an Exception if the url is incorrect or if nothing was returned by the provider. |