You are here

function ds_test_entity_variables in Display Suite 7.2

Theming function, added after ds_entity_variables().

Parameters

$variables:

1 string reference to 'ds_test_entity_variables'
ds_test_theme_registry_alter in tests/ds_test.module
Implements hook_theme_registry_alter().

File

tests/ds_test.module, line 63
Display Suite test module.

Code

function ds_test_entity_variables(&$variables) {
  if (isset($_GET['store'])) {
    cache_set('ds_test', $variables);
  }
}