You are here

function hubspot_block_info in HubSpot 7.2

Same name and namespace in other branches
  1. 7.3 hubspot.module \hubspot_block_info()
  2. 7 hubspot.module \hubspot_block_info()

Implements hook_block_info().

File

./hubspot.module, line 112
Sends Webform results to HubSpot's Forms API.

Code

function hubspot_block_info() {
  $blocks = array();
  $blocks['hubspot_recent'] = array(
    'info' => t('HubSpot Recent Leads'),
    'properties' => array(
      'administrative' => TRUE,
    ),
  );
  return $blocks;
}