mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
Fix delay value, add Patch
This commit is contained in:
92
lib/classes/patch/370.class.php
Normal file
92
lib/classes/patch/370.class.php
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Phraseanet
|
||||||
|
*
|
||||||
|
* (c) 2005-2010 Alchemy
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Doctrine\ORM\Tools\Pagination\Paginator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package
|
||||||
|
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
|
||||||
|
* @link www.phraseanet.com
|
||||||
|
*/
|
||||||
|
class patch_361 implements patchInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $release = '3.7.0.0.a2';
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var Array
|
||||||
|
*/
|
||||||
|
private $concern = array(base::DATA_BOX);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
function get_release()
|
||||||
|
{
|
||||||
|
return $this->release;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function require_all_upgrades()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return Array
|
||||||
|
*/
|
||||||
|
function concern()
|
||||||
|
{
|
||||||
|
return $this->concern;
|
||||||
|
}
|
||||||
|
|
||||||
|
function apply(base &$databox)
|
||||||
|
{
|
||||||
|
$conn = $databox->get_connection();
|
||||||
|
|
||||||
|
$sql = 'SELECT value FROM pref WHERE prop = "structure"';
|
||||||
|
$stmt = $conn->prepare($sql);
|
||||||
|
$stmt->execute();
|
||||||
|
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
|
$stmt->closeCursor();
|
||||||
|
|
||||||
|
if ( ! $result)
|
||||||
|
{
|
||||||
|
throw new \RuntimeException('Unable to find structure');
|
||||||
|
}
|
||||||
|
|
||||||
|
$DOMDocument = new DOMDocument();
|
||||||
|
$DOMDocument->loadXML($result['value']);
|
||||||
|
|
||||||
|
$XPath = new DOMXPath($DOMDocument);
|
||||||
|
|
||||||
|
foreach ($XPath->query('/record/subdefs/subdefgroup/subdef/delay') as $delay)
|
||||||
|
{
|
||||||
|
$delay->nodeValue = min(500, max(50, (int) $delay->nodeValue * 400));
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = 'UPDATE pref SET value = :structure WHERE prop = "structure"';
|
||||||
|
$stmt = $conn->prepare($sql);
|
||||||
|
$stmt->execute(array(':structure' => $DOMDocument->saveXML()));
|
||||||
|
$stmt->closeCursor();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@@ -51,7 +51,7 @@
|
|||||||
<path>{{datapathweb}}{{basename}}/subdefs</path>
|
<path>{{datapathweb}}{{basename}}/subdefs</path>
|
||||||
<size>200</size>
|
<size>200</size>
|
||||||
<mediatype>gif</mediatype>
|
<mediatype>gif</mediatype>
|
||||||
<delay>1</delay>
|
<delay>500</delay>
|
||||||
<writeDatas>no</writeDatas>
|
<writeDatas>no</writeDatas>
|
||||||
<baseurl>{{dataurl}}/{{basename}}/subdefs</baseurl>
|
<baseurl>{{dataurl}}/{{basename}}/subdefs</baseurl>
|
||||||
<label lang="fr">Animation GIF</label>
|
<label lang="fr">Animation GIF</label>
|
||||||
|
@@ -49,7 +49,7 @@
|
|||||||
<path>{{datapathweb}}{{basename}}/subdefs</path>
|
<path>{{datapathweb}}{{basename}}/subdefs</path>
|
||||||
<size>200</size>
|
<size>200</size>
|
||||||
<mediatype>gif</mediatype>
|
<mediatype>gif</mediatype>
|
||||||
<delay>1</delay>
|
<delay>500</delay>
|
||||||
<writeDatas>no</writeDatas>
|
<writeDatas>no</writeDatas>
|
||||||
<baseurl>{{dataurl}}/{{basename}}/subdefs</baseurl>
|
<baseurl>{{dataurl}}/{{basename}}/subdefs</baseurl>
|
||||||
<label lang="fr">Animation GIF</label>
|
<label lang="fr">Animation GIF</label>
|
||||||
|
Reference in New Issue
Block a user