public function WebformContentCreatorEntity::getSyncEditContentCheck in Webform Content Creator 3.x
Same name and namespace in other branches
- 8 src/Entity/WebformContentCreatorEntity.php \Drupal\webform_content_creator\Entity\WebformContentCreatorEntity::getSyncEditContentCheck()
- 2.x src/Entity/WebformContentCreatorEntity.php \Drupal\webform_content_creator\Entity\WebformContentCreatorEntity::getSyncEditContentCheck()
Check if synchronization between nodes and webform submissions is used.
Return value
bool true, when the synchronization is used. Otherwise, returns false.
Overrides WebformContentCreatorInterface::getSyncEditContentCheck
1 call to WebformContentCreatorEntity::getSyncEditContentCheck()
- WebformContentCreatorEntity::updateNode in src/
Entity/ WebformContentCreatorEntity.php - Update node from webform submission.
File
- src/
Entity/ WebformContentCreatorEntity.php, line 209
Class
- WebformContentCreatorEntity
- Defines the Webform Content creator entity.
Namespace
Drupal\webform_content_creator\EntityCode
public function getSyncEditContentCheck() {
return $this
->get(WebformContentCreatorInterface::SYNC_CONTENT);
}