You are here

function simple_fb_connect_install in Simple FB Connect 8.3

Implements hook_install().

Invalidate render cache when module is installed so that the "Facebook Login" local task tab appears at /user/login.

File

./simple_fb_connect.install, line 16
Install, update, and uninstall functions for the Simple FB Connect module.

Code

function simple_fb_connect_install() {
  Cache::invalidateTags([
    'rendered',
  ]);
}