You are here

function gathercontent_import_cache_get in GatherContent 7

Same name and namespace in other branches
  1. 7.3 gathercontent.import.inc \gathercontent_import_cache_get()

Gets the current object from the cache, or default.

Parameters

string $name: cache id.

Return value

object cache with stored stuff.

1 call to gathercontent_import_cache_get()
gathercontent_import in ./gathercontent.module
Import wizard, built with CTools multistep form wizard.

File

./gathercontent.module, line 177
Imports pages from GatherContent (http://gathercontent.com/) into Drupal as nodes.

Code

function gathercontent_import_cache_get($name) {
  ctools_include('object-cache');
  return ctools_object_cache_get('gathercontent_import', $name);
}