You are here

function responsive_preview_block_info in Responsive Theme Preview 7

Implements hook_block_info().

File

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

Code

function responsive_preview_block_info() {
  $blocks['controls'] = array(
    'info' => t('Responsive page preview controls'),
    'properties' => array(
      'administrative' => FALSE,
    ),
  );
  return $blocks;
}