All Projects → sjelfull → Craft-Embedly

sjelfull / Craft-Embedly

Licence: other
Embed.ly plugin for Craft CMS

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Craft-Embedly

tablemaker
A user-definable table field type for Craft CMS
Stars: ✭ 39 (+85.71%)
Mutual labels:  craftcms, craftcms-plugin
craft-recaptcha
Integrate Google’s reCAPTCHA into your web forms.
Stars: ✭ 16 (-23.81%)
Mutual labels:  craftcms, craftcms-plugin
Craft-Twig-ImageBase64
A simple Twig extension for Craft CMS to create base64-encoded images from Assets in your Twig templates.
Stars: ✭ 14 (-33.33%)
Mutual labels:  craftcms, craftcms-plugin
craft-plugin-doxter
Markdown Editor and Advanced Parser for Craft CMS
Stars: ✭ 23 (+9.52%)
Mutual labels:  craftcms, craftcms-plugin
SecureAssetDownload
Craft CMS plugin for secure asset download URLs
Stars: ✭ 22 (+4.76%)
Mutual labels:  craftcms, craftcms-plugin
craft3-fallback-site
Failing requests in a multi-site install can fall back to other sites, to prevent 404 errors from missing or disabled entries.
Stars: ✭ 14 (-33.33%)
Mutual labels:  craftcms, craftcms-plugin
VzAddress-Craft
Address fieldtype for the Craft CMS
Stars: ✭ 30 (+42.86%)
Mutual labels:  craftcms, craftcms-plugin
Inlin-Craft
Plugin for inlining files in templates.
Stars: ✭ 64 (+204.76%)
Mutual labels:  craftcms, craftcms-plugin
Craft-Slack
Send messages to Slack from Craft CMS
Stars: ✭ 16 (-23.81%)
Mutual labels:  craftcms, craftcms-plugin
craft-json-snippets
Helps make CraftCMS models in .json
Stars: ✭ 17 (-19.05%)
Mutual labels:  craftcms, craftcms-plugin
visor
🕶 A simple admin overlay to get to the relevant areas of the Craft CMS control panel.
Stars: ✭ 25 (+19.05%)
Mutual labels:  craftcms, craftcms-plugin
molecule
⚛️ Grab Twig components, CSS and JS files outside the primary template folder
Stars: ✭ 20 (-4.76%)
Mutual labels:  craftcms, craftcms-plugin
tags
A tag manager for Craft 3
Stars: ✭ 23 (+9.52%)
Mutual labels:  craftcms, craftcms-plugin
Similar-Craft
Find similar elements
Stars: ✭ 32 (+52.38%)
Mutual labels:  craftcms, craftcms-plugin
craft-react
Client and Server-side React rendering for CraftCMS
Stars: ✭ 40 (+90.48%)
Mutual labels:  craftcms, craftcms-plugin
overflow.craft-plugin
A plain text Craft field type, with a soft or hard character limit.
Stars: ✭ 13 (-38.1%)
Mutual labels:  craftcms, craftcms-plugin
craft-audit
Audit log for Craft 3
Stars: ✭ 18 (-14.29%)
Mutual labels:  craftcms, craftcms-plugin
digital-products
Sell digital products with Craft Commerce.
Stars: ✭ 14 (-33.33%)
Mutual labels:  craftcms, craftcms-plugin
craft-entry-instructions
A simple fieldtype to add instructions.
Stars: ✭ 16 (-23.81%)
Mutual labels:  craftcms, craftcms-plugin
Craft-CacheWarmer
Warm up your cache with a single request.
Stars: ✭ 38 (+80.95%)
Mutual labels:  craftcms, craftcms-plugin

Craft Embed.ly plugin

Use Embed.ly to fetch information and embed content from 250+ services.

Usage

You can provide one url, like so:

{% set single = craft.embedly.oembed('https://vimeo.com/4076405') %}
<h1>Single url</h2>
<ul>
{% for key,value in single|sort %}
    <li>{{ key }}: {{ value }}</li>
{% endfor %}
</ul>

...or send off a whole array:

{% set multiple = craft.embedly.oembed([
    'https://vimeo.com/19026280', 
    'https://www.youtube.com/watch?v=DsY22N5D9UY', 
    'http://www.wired.com/2015/02/field-guide-internet-infrastructure-hides-plain-sight/'
]) %}

<h1>Multiple url's</h1>
{% for service,values in multiple|sort %}
    <h2>{{ values.provider_name }} – {{ values.type }}</h2>
    <ul>
        {% for key,value in values %}
            <li>{{key}}: {{ value }}</li>
        {% endfor %}
    </ul>
{% endfor %}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].