Files
Phraseanet/lib/classes/patch/3809.php
2013-06-14 09:47:53 +02:00

75 lines
1.5 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2012 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Alchemy\Phrasea\Application;
class patch_3809 implements patchInterface
{
/** @var string */
private $release = '3.8.0.a9';
/** @var array */
private $concern = array(base::DATA_BOX);
/**
* {@inheritdoc}
*/
public function get_release()
{
return $this->release;
}
/**
* {@inheritdoc}
*/
public function require_all_upgrades()
{
return true;
}
/**
* {@inheritdoc}
*/
public function concern()
{
return $this->concern;
}
/**
* {@inheritdoc}
*/
public function apply(base $databox, Application $app)
{
$sxe = $databox->get_sxml_structure();
if ($sxe !== false) {
foreach ($sxe->statbits->bit as $sb) {
$bit = (int) ($sb["n"]);
if ($bit < 4 && $bit > 31) {
continue;
}
$name = (string) $sb;
$labelOff = (string) $sb['labelOff'];
$labelOn = (string) $sb['labelOn'];
$this->status[$bit]["labeloff"] = $labelOff ? : 'no-' . $name;
$this->status[$bit]["labelon"] = $labelOn ? : 'ok-' . $name;
}
}
$dom = new \DOMDocument();
$dom->loadXML($sxe->asXML());
$databox->saveStructure($dom);
}
}