public function Compatibility::content in CMS Content Sync 2.0.x
Same name and namespace in other branches
- 2.1.x src/Controller/Compatibility.php \Drupal\cms_content_sync\Controller\Compatibility::content()
Return value
array the content array to theme the compatibility tables
1 string reference to 'Compatibility::content'
File
- src/
Controller/ Compatibility.php, line 17
Class
- Compatibility
- Class Compatibility provides details about entity types and field types used on this site and whether or not we support them.
Namespace
Drupal\cms_content_sync\ControllerCode
public function content() {
return [
'#supported_entity_types' => EntityHandlerPluginManager::getEntityTypes(),
'#theme' => 'cms_content_sync_compatibility',
];
}