You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
1.1 KiB

<?php
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
/**
* @param $installer
*/
function upgrade_20100507_flash_banner_tiki($installer)
{
$result = $installer->query('select * from `tiki_banners` where `which` = ? and `HTMLData` like ?', ['useFlash', '%embedSWF%']);
$query = 'update `tiki_banners` set `HTMLData`=? where `bannerId`=?';
while ($res = $result->fetchRow()) {
if (preg_match('/(swfobject|SWFFix)\.embedSWF\([\'" ]*([^,\'"]*)[\'" ]*,[\'" ]*([^,\'"]*)[\'" ]*,[\'" ]*([^,\'"]*)[\'" ]*,[\'" ]*([^,\'"]*)[\'" ]*,[\'" ]*([^,\'"]*)[\'" ]*,[\'" ]*([^,\'"]*)[\'" ]*/m', $res['HTMLData'], $matches)) {
$movie['movie'] = $matches[2];
$movie['width'] = $matches[4];
$movie['height'] = $matches[5];
$movie['version'] = $matches[6];
$installer->query($query, [serialize($movie), $res['bannerId']]);
}
}
}