function fboauth_install in Facebook OAuth (FBOAuth) 6
Same name and namespace in other branches
- 7.2 fboauth.install \fboauth_install()
- 7 fboauth.install \fboauth_install()
Implements hook_install().
File
- ./
fboauth.install, line 11 - Provides install and update functions for the Facebook OAuth module.
Code
function fboauth_install() {
drupal_install_schema('fboauth');
// Facebook proxy e-mail addresses may be longer than the Drupal-default 254
// character limit. Extend to 320 characters.
_fboauth_change_user_mail_field();
}