function cms_content_sync_theme in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x cms_content_sync.module \cms_content_sync_theme()
- 2.0.x cms_content_sync.module \cms_content_sync_theme()
Implements hook_theme().
File
- ./
cms_content_sync.module, line 1753 - Module file for cms_content_sync.
Code
function cms_content_sync_theme() {
$theme['cms_content_sync_content_dashboard'] = [
'variables' => [
'configuration' => NULL,
],
'template' => 'cms_content_sync_content_dashboard',
];
$theme['cms_content_sync_introduction'] = [
'variables' => [
'supported_entity_types' => NULL,
],
'template' => 'cms_content_sync_introduction',
];
$theme['cms_content_sync_show_usage'] = [
'variables' => [
'usage' => NULL,
],
'template' => 'cms_content_sync_show_usage',
];
return $theme;
}