function contextual_links_example_block_info

Implements hook_block_info().

Related topics

File

contextual_links_example/contextual_links_example.module, line 177

Code

function contextual_links_example_block_info() {
  // Define the block that will display our module's content.
  $blocks['example']['info'] = t('Contextual links example block');
  return $blocks;
}