You are here

link_iframe_formatter.module in Link iframe formatter 2.x

Same filename and directory in other branches
  1. 8 link_iframe_formatter.module
  2. 7 link_iframe_formatter.module

Contains main module functions.

File

link_iframe_formatter.module
View source
<?php

/**
 * @file
 * Contains main module functions.
 */

/**
 * Implements hook_theme().
 */
function link_iframe_formatter_theme() {
  return [
    'link_iframe_formatter' => [
      'variables' => [
        'url' => NULL,
        'width' => NULL,
        'height' => NULL,
        'class' => NULL,
        'original' => NULL,
        'path' => NULL,
        'scrolling' => 'yes',
      ],
      'template' => 'link-iframe-formatter',
    ],
  ];
}

Functions

Namesort descending Description
link_iframe_formatter_theme Implements hook_theme().