Файл: adultscript-2.0.3-pro/files/modules/video/helpers/embed.php
Строк: 5
<?php
class VHelper_video_embed
{
public static function responsive($embed)
{
$embed = preg_replace('/width="(d+)"/', 'width="100%"', $embed);
$embed = preg_replace('/width=(d+)/', 'width="100%"', $embed);
$embed = preg_replace("/width='(d+)'/", 'width="100%"', $embed);
$embed = preg_replace('/height="(d+)"/', 'height="100%"', $embed);
$embed = preg_replace('/height=(d+)/', 'height="100%"', $embed);
$embed = preg_replace("/height='(d+)'/", 'height="100%"', $embed);
return $embed;
}
}