scusate non trovo la sezione adatta ?? ho trovato come inserire i video di youtube in sobi2 tramite un file "Embed" ma carica solo quelli di youtube io vorrei caricare quelli di vimeo? questo è il codice: cosa devo cambiare per vedere vimeo?
defined( '_SOBI2_' ) or die( 'Restricted access' );
function createSpecialEmbedMediaField( $fid, $w, $h, $data, $autostart )
{
$w = $w < 425 ? 425 : $w;
$h = $h < 350 ? 350 : $h;
$data = ereg_replace( '/watch\?v=(.*)', '/v/\1', $data );
$sobiMediaObject .= "\n\t<object width=\"{$w}\" height=\"$h\">";
$sobiMediaObject .= "\n\t\t<param name=\"movie\" value=\"{$data}\"></param>";
$sobiMediaObject .= "\n\t\t<param name=\"wmode\" value=\"transparent\"></param>";
$sobiMediaObject .= "\n\t\t<embed src=\"{$data}\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"{$w}\" height=\"{$h}\"></embed>";
$sobiMediaObject .= "\n\t</object>";
return $sobiMediaObject;