Spaces:
No application file
No application file
namespace Mautic\LeadBundle\Model; | |
use Mautic\LeadBundle\Entity\CustomFieldEntityInterface; | |
trait DefaultValueTrait | |
{ | |
/** | |
* @param string $object | |
*/ | |
protected function setEntityDefaultValues(CustomFieldEntityInterface $entity, $object = 'lead') | |
{ | |
if (!$entity->getId()) { | |
$fields = $this->leadFieldModel->getFieldListWithProperties($object); | |
foreach ($fields as $alias => $field) { | |
// Prevent defaults from overwriting values already set | |
$value = $entity->getFieldValue($alias); | |
if ((null === $value || '' === $value) && '' !== $field['defaultValue'] && null !== $field['defaultValue']) { | |
$entity->addUpdatedField($alias, $field['defaultValue']); | |
} | |
} | |
} | |
} | |
} | |