You are here

feeds_facebook.install in Feeds: Facebook parser 7

Same filename and directory in other branches
  1. 6 feeds_facebook.install

Schema definitions install/update/uninstall hooks.

File

feeds_facebook.install
View source
<?php

/**
 * @file
 * Schema definitions install/update/uninstall hooks.
 */

/**
 * Implementation of hook_enable().
 */
function feeds_facebook_enable() {

  //clear the cache to display in Feeds as available plugin.
  cache_clear_all('plugins:feeds:plugins', 'cache');
}

/**
 * Implementation of hook_disable().
 */
function feeds_facebook_disable() {

  //clear the cache to display in Feeds as available plugin.
  cache_clear_all('plugins:feeds:plugins', 'cache');
}

Functions

Namesort descending Description
feeds_facebook_disable Implementation of hook_disable().
feeds_facebook_enable Implementation of hook_enable().