You are here

function smiley_flush_caches in Smiley 7.2

Implements hook_flush_caches().

File

./smiley.module, line 49
A framework for replacing text smileys with images.

Code

function smiley_flush_caches() {

  // Rebuild the smiley cache.
  _smiley_get_smileys(TRUE);

  // We don't have any cache tables.
  return array();
}