blob: 97b5e8d887fe0f9e6bf51d182909ece920a7cb6d (
plain)
1
2
3
4
5
6
7
|
<?php
$video_id = $vars['entity']->video_id;
$width = $vars['width'];
$height = $vars['height'];
echo "<iframe src=\"http://player.vimeo.com/video/$video_id?byline=0\" width=\"$width\" height=\"$height\" frameborder=\"0\" webkitAllowFullScreen allowFullScreen></iframe>";
|