public function DefaultContentEntityHandler::getAllowedPreviewOptions in CMS Content Sync 2.1.x
Same name and namespace in other branches
- 8 src/Plugin/cms_content_sync/entity_handler/DefaultContentEntityHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\entity_handler\DefaultContentEntityHandler::getAllowedPreviewOptions()
- 2.0.x src/Plugin/cms_content_sync/entity_handler/DefaultContentEntityHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\entity_handler\DefaultContentEntityHandler::getAllowedPreviewOptions()
Return value
string[] Provide the allowed preview options used for display when manually pulling entities
Overrides EntityHandlerInterface::getAllowedPreviewOptions
File
- src/
Plugin/ cms_content_sync/ entity_handler/ DefaultContentEntityHandler.php, line 53
Class
- DefaultContentEntityHandler
- Class DefaultContentEntityHandler, providing a minimalistic implementation for any content entity type.
Namespace
Drupal\cms_content_sync\Plugin\cms_content_sync\entity_handlerCode
public function getAllowedPreviewOptions() {
return [
'table' => 'Table',
'preview_mode' => 'Preview mode',
];
}