You are here

function background_image_formatter_theme in Simple Background image formatter 8

Same name and namespace in other branches
  1. 7 background_image_formatter.module \background_image_formatter_theme()

Implements hook_theme().

File

./background_image_formatter.module, line 11
Background image formatter module.

Code

function background_image_formatter_theme($existing, $type, $theme, $path) {
  $items = [];
  $items['background_image_formatter_inline'] = [
    'variables' => [
      'background_image_selector' => NULL,
      'image_uri' => NULL,
    ],
  ];
  return $items;
}