public $destinationFile;
public $x;
- const VINCENT = "montpellier.cubedesigners.com";
+ const VINCENT = "paris.cubedesigners.com";
public function exportCollection($collectionId, $os) {
global $core;
public function getAdditionnalContent() {
$i = $this->_init;
$i['inline'] = true;
+ $i['width'] = $i['video_width'];
+ $i['height'] = $i['video_height'];
$l = wsHTML5Link::getMultimediaInstance($this->id . '_content', $i, $this->compiler);
$markup = $l->getHTMLContainer();
$res = '<iframe width="' . $iw . '" height="' . $ih . '" src="' . $this->_url . '" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" onmousewheel=""></iframe>';
}
if (isset($externalIframe)) {
- $res = '<iframe width="' . $w . '" height="' . $h . '" src="' . $externalIframe . '" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" onmousewheel=""></iframe>';
+ $iw = $this->_config['width'];
+ $ih = $this->_config['height'];
+ $res = '<iframe width="' . $iw . '" height="' . $ih . '" src="' . $externalIframe . '" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" onmousewheel=""></iframe>';
}
foreach ($this->_config['inject'] as $i) {