<?php

/**
 * @file
 * Background image formatter module.
 */

/**
 * Implements hook_theme().
 */
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;
}
