1 contextual_links_example.module | contextual_links_example_block_info() |
Implements hook_block_info().
Related topics
File
- modules/
examples/ contextual_links_example/ contextual_links_example.module, line 174 - Hooks implementations for the Contextual Links Example module.
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;
}