function fb_app_install in Drupal for Facebook 7.3
Same name and namespace in other branches
- 5.2 fb_app.install \fb_app_install()
- 5 fb_app.install \fb_app_install()
- 6.3 fb_app.install \fb_app_install()
- 6.2 fb_app.install \fb_app_install()
File
- ./
fb_app.install, line 11 - Installs database tables and settings required by fb_app module.
Code
function fb_app_install() {
// drupal_install_schema is called by Drupal
drupal_set_message(st('Facebook Application module installed. Please grant yourself <a href="!perm">permissions</a> and then browse to <a href="!create">Admin >> Structure >> Facebook Apps</a> to get started.', array(
'!perm' => url('admin/people/permissions'),
'!create' => url('admin/structure/fb'),
)));
}