You are here

function bynder_theme in Bynder 4.0.x

Same name and namespace in other branches
  1. 8.3 bynder.module \bynder_theme()
  2. 8 bynder.module \bynder_theme()
  3. 8.2 bynder.module \bynder_theme()

Implements hook_theme().

File

./bynder.module, line 47
Provides bynder integration.

Code

function bynder_theme($existing, $type, $theme, $path) {
  return [
    'bynder_search_item' => [
      'variables' => [
        'thumbnail_uri' => '',
        'name' => t('N/A'),
        'type' => '',
      ],
    ],
    'bynder_video' => [
      'variables' => [
        'attributes' => [],
        'source_attributes' => [],
      ],
    ],
  ];
}