You are here

function gutenberg_cloud_theme in Gutenberg 8.2

Same name and namespace in other branches
  1. 8 modules/gutenberg_cloud/gutenberg_cloud.module \gutenberg_cloud_theme()

Implements hook_theme().

File

modules/gutenberg_cloud/gutenberg_cloud.module, line 33
Provides integration with Gutenberg cloud.

Code

function gutenberg_cloud_theme() {
  return [
    'gutenberg_cloud__details' => [
      'variables' => [
        'name' => NULL,
        'version' => NULL,
        'description' => NULL,
        'author' => NULL,
        'author_url' => NULL,
        'picture' => NULL,
        'tags' => [],
      ],
    ],
  ];
}