media_entity_soundcloud.theme.inc in Media entity Soundcloud 8.2
Same filename and directory in other branches
Theme functions for the media_entity_soundcloud module.
File
media_entity_soundcloud.theme.incView source
<?php
/**
* @file
* Theme functions for the media_entity_soundcloud module.
*/
use Drupal\Core\Url;
/**
* Prepares variables for media_entity_soundcloud templates.
*
* Default template: media-soundcloud-embed.html.twig.
*/
function template_preprocess_media_soundcloud_embed(&$variables) {
// Build the embed url.
$uri = 'https://w.soundcloud.com/player/';
// Build the query.
$query = [
'url' => 'https://api.soundcloud.com/' . $variables['source_id'],
];
// Add visual.
$query['visual'] = $variables['type'] == 'visual';
// Add options.
foreach ($variables['options'] as $option => $value) {
$query[$option] = $value == '0' ? 'false' : 'true';
}
$url = Url::fromUri($uri, [
'query' => $query,
]);
$variables['url'] = $url
->toString();
}
Functions
Name | Description |
---|---|
template_preprocess_media_soundcloud_embed | Prepares variables for media_entity_soundcloud templates. |