blob: b7f72dea68704c23fc61b446dcc5983540d243fc (
plain)
1
2
3
4
5
6
7
|
<?php
$embedurl = $vars['entity']->embedurl;
$width = $vars['width'];
$height = $vars['height'];
echo "<iframe src=\"$embedurl\" width=\"$width\" height=\"$height\" frameborder=\"0\" allowfullscreen></iframe>";
|