You are here

function swagger_ui_formatter_theme in Swagger UI Field Formatter 7

Same name and namespace in other branches
  1. 8.3 swagger_ui_formatter.module \swagger_ui_formatter_theme()
  2. 8 swagger_ui_formatter.module \swagger_ui_formatter_theme()
  3. 8.2 swagger_ui_formatter.module \swagger_ui_formatter_theme()
  4. 7.2 swagger_ui_formatter.module \swagger_ui_formatter_theme()

Implements hook_theme().

File

./swagger_ui_formatter.module, line 181
Swagger ui field formatter functionality.

Code

function swagger_ui_formatter_theme($existing, $type, $theme, $path) {
  $path = drupal_get_path('module', 'swagger_ui_formatter') . '/templates';
  return array(
    'swagger_ui_formatter' => array(
      'variables' => array(
        'delta' => NULL,
      ),
      'path' => $path,
      'template' => 'swagger-ui-formatter',
    ),
  );
}