You are here

function socialfeed_flush in Social Feed 6

Flushes the cached data.

1 call to socialfeed_flush()
socialfeed_settings_form_submit in ./socialfeed.module
Implements form_submit().

File

./socialfeed.module, line 346
Module for fetching data from Facebook, Twitter, Youtube, and Foursquare. This module provides block content retrieved from a

Code

function socialfeed_flush() {

  // Flush the all feed data.
  $query = "TRUNCATE TABLE {socialfeed_post}";
  $sql = db_query($query);
}