protected function EntityHandlerBase::hasLabelProperty in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Plugin/EntityHandlerBase.php \Drupal\cms_content_sync\Plugin\EntityHandlerBase::hasLabelProperty()
- 2.0.x src/Plugin/EntityHandlerBase.php \Drupal\cms_content_sync\Plugin\EntityHandlerBase::hasLabelProperty()
Check whether the entity type supports having a label.
Return value
bool
2 calls to EntityHandlerBase::hasLabelProperty()
- EntityHandlerBase::createNew in src/
Plugin/ EntityHandlerBase.php - EntityHandlerBase::setEntityValues in src/
Plugin/ EntityHandlerBase.php - Set the values for the pulled entity.
2 methods override EntityHandlerBase::hasLabelProperty()
- DefaultConfigEntityHandler::hasLabelProperty in src/
Plugin/ cms_content_sync/ entity_handler/ DefaultConfigEntityHandler.php - Check whether the entity type supports having a label.
- DefaultContentEntityHandler::hasLabelProperty in src/
Plugin/ cms_content_sync/ entity_handler/ DefaultContentEntityHandler.php - Check whether the entity type supports having a label.
File
- src/
Plugin/ EntityHandlerBase.php, line 419
Class
- EntityHandlerBase
- Common base class for entity handler plugins.
Namespace
Drupal\cms_content_sync\PluginCode
protected function hasLabelProperty() {
return true;
}