function addthis_hook_info in AddThis 7.4
Implements hook_hook_info().
Define hook_addthis_display_markup in the addthis group so that $module.addthis.inc files will be included. See addthis.addthis.inc for examples of the hook implementation.
File
- ./
addthis.module, line 22
Code
function addthis_hook_info() {
$hooks['addthis_display_markup'] = array(
'group' => 'addthis',
);
return $hooks;
}