You are here

function cacheflush_entity_entity_property_info_alter in CacheFlush 7.3

Implements hook_entity_property_info_alter().

File

modules/cacheflush_entity/cacheflush_entity.module, line 40
Cacheflush entity to store presets.

Code

function cacheflush_entity_entity_property_info_alter(&$info) {
  $info['cacheflush']['properties']['uid']['type'] = 'user';
  $info['cacheflush']['properties']['created']['type'] = 'date';
  $info['cacheflush']['properties']['changed']['type'] = 'date';
}