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 176 - Shows how to use Backdrop's contextual links functionality.
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;
}