-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #634 from contao-community-alliance/hotfix/change_…
…transpation_keys_for_mm Update for translation handling and support arbitrary routing
- Loading branch information
Showing
74 changed files
with
1,830 additions
and
1,304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2019 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -13,7 +13,8 @@ | |
* @package contao-community-alliance/dc-general | ||
* @author Christian Schiffler <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2019 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -121,7 +122,7 @@ private function addParentFilter(ModelIdInterface $idParent, ConfigInterface $co | |
$baseFilter = $config->getFilter(); | ||
$filter = $condition->getFilter($parent); | ||
|
||
if ($baseFilter) { | ||
if (\is_array($baseFilter)) { | ||
$filter = array_merge($baseFilter, $filter); | ||
} | ||
|
||
|
@@ -144,6 +145,7 @@ private function addParentFilter(ModelIdInterface $idParent, ConfigInterface $co | |
private function buildBaseConfig(?ModelIdInterface $parentId): ConfigInterface | ||
{ | ||
$environment = $this->getEnvironment(); | ||
assert($environment instanceof EnvironmentInterface); | ||
$provider = $environment->getDataProvider(); | ||
if (null === $provider) { | ||
throw new DcGeneralRuntimeException('Data provider not set.'); | ||
|
@@ -156,7 +158,7 @@ private function buildBaseConfig(?ModelIdInterface $parentId): ConfigInterface | |
$additional = $definition->getBasicDefinition()->getAdditionalFilter(); | ||
|
||
// Custom filter common for all modes. | ||
if ($additional) { | ||
if (\is_array($additional)) { | ||
$config->setFilter($additional); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2019 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -16,7 +16,8 @@ | |
* @author David Molineus <[email protected]> | ||
* @author Stefan Heimes <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2019 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -129,8 +130,8 @@ public function remove(ItemInterface $item) | |
public function removeById(ModelIdInterface $modelId) | ||
{ | ||
$serializedId = $modelId->getSerialized(); | ||
if (!empty($this->itemsByModelId[$serializedId])) { | ||
foreach ($this->itemsByModelId[$serializedId] as $item) { | ||
if ([] !== ($items = $this->itemsByModelId[$serializedId] ?? [])) { | ||
foreach ($items as $item) { | ||
unset($this->items[$item->getClipboardId()]); | ||
} | ||
|
||
|
@@ -176,7 +177,7 @@ public function has(ItemInterface $item) | |
*/ | ||
public function hasId(ModelIdInterface $modelId) | ||
{ | ||
return !empty($this->itemsByModelId[$modelId->getSerialized()]); | ||
return (bool) ($this->itemsByModelId[$modelId->getSerialized()] ?? false); | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2022 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -15,7 +15,7 @@ | |
* @author Tristan Lins <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2022 Contao Community Alliance. | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -60,7 +60,7 @@ public function __construct($callback, $restrictions = null) | |
{ | ||
$this->callback = $callback; | ||
|
||
if ($restrictions) { | ||
if (\is_array($restrictions)) { | ||
call_user_func_array([$this, 'setRestrictions'], $restrictions); | ||
} | ||
} | ||
|
@@ -86,7 +86,7 @@ public function setRestrictions(?string $dataContainerName = null) | |
*/ | ||
public function wantToExecute($event) | ||
{ | ||
if (empty($this->dataContainerName)) { | ||
if (null === $this->dataContainerName) { | ||
return true; | ||
} | ||
if (!$event instanceof EnvironmentAwareInterface) { | ||
|
@@ -95,6 +95,7 @@ public function wantToExecute($event) | |
if (null === $definition = $event->getEnvironment()->getDataDefinition()) { | ||
return false; | ||
} | ||
|
||
return ($this->dataContainerName === $definition->getName()); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2020 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -13,7 +13,8 @@ | |
* @package contao-community-alliance/dc-general | ||
* @author Christian Schiffler <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2020 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -66,7 +67,7 @@ public function setRestrictions(?string $dataContainerName = null, ?string $prop | |
public function wantToExecute($event) | ||
{ | ||
return parent::wantToExecute($event) | ||
&& (empty($this->propertyName) || ($this->propertyName === $this->getProperty($event))); | ||
&& (null === $this->propertyName || ($this->propertyName === $this->getProperty($event))); | ||
} | ||
|
||
private function getProperty(Event $event): string | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2019 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,8 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Tristan Lins <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2019 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -59,9 +60,7 @@ public function setRestrictions($dataContainerName = null, $operationName = null | |
public function wantToExecute($event) | ||
{ | ||
return parent::wantToExecute($event) | ||
&& (empty($this->operationName) | ||
|| ($this->operationName === $event->getKey()) | ||
); | ||
&& (null === $this->operationName || ($this->operationName === $event->getKey())); | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2019 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,8 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Tristan Lins <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2019 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -38,7 +39,7 @@ class ContainerOnLoadCallbackListener extends AbstractCallbackListener | |
*/ | ||
public function wantToExecute($event) | ||
{ | ||
if (empty($this->dataContainerName)) { | ||
if (null === $this->dataContainerName) { | ||
return true; | ||
} | ||
if (null === $definition = $event->getDcGeneral()->getEnvironment()->getDataDefinition()) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/dc-general. | ||
* | ||
* (c) 2013-2020 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -15,7 +15,8 @@ | |
* @author Tristan Lins <[email protected]> | ||
* @author David Molineus <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2020 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -69,9 +70,7 @@ public function wantToExecute($event) | |
} | ||
|
||
return parent::wantToExecute($event) | ||
&& (empty($this->operationName) | ||
|| ($this->operationName === $event->getKey()) | ||
); | ||
&& (null === $this->operationName || ($this->operationName === $event->getKey())); | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.