You are here

feeds_facebook.install in Feeds: Facebook parser 6

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

File

feeds_facebook.install
View source
<?php

// $Id$

/**
 * 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().