You are here

function responsive_preview_theme in Responsive Theme Preview 7

Same name and namespace in other branches
  1. 8 responsive_preview.module \responsive_preview_theme()

Implements hook_theme().

File

./responsive_preview.module, line 74
Provides a component that previews the a page in various device dimensions.

Code

function responsive_preview_theme() {
  return array(
    'responsive_preview_admin_form' => array(
      'template' => 'templates/responsive-preview-admin-form',
      'file' => 'responsive_preview.admin.inc',
      'render element' => 'form',
    ),
  );
}