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