Your IP : 216.73.216.59


Current Path : /home/quelfutuu/www/grice/plugins/auto/oembed/v3.5.1/oembed/input/
Upload File :
Current File : /home/quelfutuu/www/grice/plugins/auto/oembed/v3.5.1/oembed/input/posttraite_soundcloud_rich.php

<?php

/**
 * Plugin oEmbed
 * Licence GPL3
 *
 */

if (!defined('_ECRIRE_INC_VERSION')) {
	return;
}

function oembed_input_posttraite_soundcloud_rich_dist($data) {

	$data['media'] = 'audio';
	$data['html'] = preg_replace(",width=['\"][0-9]+['\"],i", 'width="100%"', $data['html']);

	if (!isset($data['thumbnail_url'])) {
		$data['thumbnail_url'] = find_in_path('oembed/input/vignettes/soundcloud.svg');
	} else {
		$data['thumbnail_url'] = preg_replace(',^http://,Uims', 'https://', $data['thumbnail_url']);
	}

	return $data;
}