form as custom element

This commit is contained in:
Benjamin Dalsass
2025-12-23 09:03:01 +01:00
parent 7713a113cc
commit a627f8a471
11 changed files with 164 additions and 38 deletions

View File

@@ -391,9 +391,19 @@ abstract class AbstractFormBlock implements IFormBlock
*
* @return bool
*/
public function ImpactDependentsBlocks(): bool
public function IsImpactingBlocks(): bool
{
return $this->oIORegister->ImpactDependentsBlocks();
return $this->oIORegister->IsImpactingBlocks();
}
/**
* Return the dependencies blocks.
*
* @return array
*/
public function GetImpactedBlocks(): array
{
return $this->oIORegister->GetImpactedBlocks();
}
/**