function recovery_pass_ctools_plugin_api in Recovery Password (Email New Password) 7
Implements hook_ctools_plugin_api().
File
- ./
recovery_pass.module, line 22 - Alters default Drupal password recovery process by overriding default submit.
Code
function recovery_pass_ctools_plugin_api($owner, $api) {
if ($owner == 'services' && $api == 'services') {
return array(
'version' => 3,
'file' => 'recovery_pass.services.inc',
);
}
}