You are here

function views_content_cache_key_og::view_key_from_arguments in Views content cache 6.2

Same name and namespace in other branches
  1. 7.3 plugins/views_content_cache/og.inc \views_content_cache_key_og::view_key_from_arguments()

Returns an array of views arguments that can supply valid key values.

Plugins can define types of arguments that can optionally be checked for key values when looking up cache segments.

Return value

An array of argument handler classes that this plugin supports.

Overrides views_content_cache_key::view_key_from_arguments

File

plugins/og.inc, line 59

Class

views_content_cache_key_og
Views content cache plugin for Organic Groups.

Code

function view_key_from_arguments() {
  return array(
    'og_views_handler_argument_og_group_nid',
  );
}