function hook_focal_point_default_method_info in Focal Point 7
Provide a default focal point calculation method.
2 functions implement hook_focal_point_default_method_info()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
1 invocation of hook_focal_point_default_method_info()
- focal_point_get_default_method_info in ./
focal_point.module - Get a list of methods that can be used to set the default focal point value.
File
- ./
focal_point.api.php, line 36 - Documentation of Feeds hooks.
Code
function hook_focal_point_default_method_info() {
$info['example'] = array(
'label' => t('Example module'),
'callback' => 'callback_get_focal_point',
);
return $info;
}