function user_email_verification_views_api in User email verification 7
Implements hook_views_api().
File
- ./
user_email_verification.module, line 574 - This module allows you to have e-mail verification and in meanwhile allowing the users to type their own passwords. If they do not verify their accounts in a certain time interval the user will be blocked.
Code
function user_email_verification_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'user_email_verification') . '/views',
);
}