. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Core\FieldProcessing\LinkParent; use Espo\Core\ORM\Type\FieldType; use Espo\ORM\Entity; use Espo\Core\ORM\Entity as CoreEntity; use Espo\Core\FieldProcessing\Loader as LoaderInterface; use Espo\Core\FieldProcessing\Loader\Params; use Espo\ORM\Defs as OrmDefs; /** * @implements LoaderInterface */ class Loader implements LoaderInterface { /** @var array */ private array $fieldListCacheMap = []; public function __construct(private OrmDefs $ormDefs) {} public function process(Entity $entity, Params $params): void { if (!$entity instanceof CoreEntity) { return; } foreach ($this->getFieldList($entity->getEntityType()) as $field) { $entity->loadParentNameField($field); } } /** * @return string[] */ private function getFieldList(string $entityType): array { if (array_key_exists($entityType, $this->fieldListCacheMap)) { return $this->fieldListCacheMap[$entityType]; } $list = []; $entityDefs = $this->ormDefs->getEntity($entityType); foreach ($entityDefs->getFieldList() as $fieldDefs) { if ($fieldDefs->getType() !== FieldType::LINK_PARENT) { continue; } $name = $fieldDefs->getName(); $list[] = $name; } $this->fieldListCacheMap[$entityType] = $list; return $list; } }