Files
Phraseanet/lib/classes/patch/418RC7.php
jygaulier 65732343ee PHRAS-3918_subdef-substituable-setting (#4381)
* add checkbox "substituable" to admin/subdef ; bump to 4.1.8-rc7 and bump production-client ; migrate and remove conf 'registry/modules/thumb-substitution'

* bump production-client to 94

* fix test ; add test ; move "substituable" node to all subdefs (attribute)

* fix test

* fix test

* set "flatten layers"=true for new subdefs (PHRAS-3852 fix it)
2023-10-31 15:52:45 +01:00

93 lines
2.1 KiB
PHP

<?php
use Alchemy\Phrasea\Application;
use Alchemy\Phrasea\Core\Configuration\PropertyAccess;
class patch_418RC7 implements patchInterface
{
/** @var string */
private $release = '4.1.8-rc7';
/** @var array */
private $concern = [base::DATA_BOX];
/**
* {@inheritdoc}
*/
public function get_release()
{
return $this->release;
}
/**
* {@inheritdoc}
*/
public function getDoctrineMigrations()
{
return [];
}
/**
* {@inheritdoc}
*/
public function require_all_upgrades()
{
return false;
}
/**
* {@inheritdoc}
*/
public function concern()
{
return $this->concern;
}
/**
* {@inheritdoc}
*/
public function apply(base $base, Application $app)
{
if ($base->get_base_type() === base::DATA_BOX) {
$this->patch_databox($base, $app);
}
elseif ($base->get_base_type() === base::APPLICATION_BOX) {
$this->patch_appbox($base, $app);
}
return true;
}
private $thumbSubstitution = null;
public function patch_databox(databox $databox, Application $app)
{
/** @var PropertyAccess $conf */
$conf = $app['conf'];
if ($this->thumbSubstitution === null) {
// first db
$this->thumbSubstitution = $conf->get(['registry', 'modules', 'thumb-substitution']);
$conf->remove(['registry', 'modules', 'thumb-substitution']);
}
if ($this->thumbSubstitution) {
$dom_struct = $databox->get_dom_structure();
$dom_xp = $databox->get_xpath_structure();
$nodes = $dom_xp->query('//record/subdefs/subdefgroup/subdef[@name="thumbnail"]');
for ($i = 0; $i < $nodes->length; $i++) {
/** @var \DOMElement $node */
$node = $nodes->item($i);
$node->setAttribute('substituable', 'true');
}
$databox->saveStructure($dom_struct);
}
}
private function patch_appbox(base $appbox, Application $app)
{
}
}