You are here

public function DefaultNodeHandler::getAllowedPreviewOptions in CMS Content Sync 2.1.x

Same name and namespace in other branches
  1. 8 src/Plugin/cms_content_sync/entity_handler/DefaultNodeHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\entity_handler\DefaultNodeHandler::getAllowedPreviewOptions()
  2. 2.0.x src/Plugin/cms_content_sync/entity_handler/DefaultNodeHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\entity_handler\DefaultNodeHandler::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/DefaultNodeHandler.php, line 89

Class

DefaultNodeHandler
Class DefaultNodeHandler, providing proper handling for published/unpublished content.

Namespace

Drupal\cms_content_sync\Plugin\cms_content_sync\entity_handler

Code

public function getAllowedPreviewOptions() {
  return [
    'table' => 'Table',
    'preview_mode' => 'Preview mode',
  ];
}