You are here

function display_cache_get_comment_publication_clears_host_entity_cache_setting_name in Display Cache 7

Returns setting name for comment publication host entity clearing.

2 calls to display_cache_get_comment_publication_clears_host_entity_cache_setting_name()
display_cache_get_comment_publication_clears_host_entity_cache_settings in ./display_cache.module
Collects the comment publication host entity cache clearing settings.
display_cache_view_mode_settings_form_submit in ./display_cache.admin.inc
Custom submit handler for display cache settings form.

File

./display_cache.module, line 545
Module file for Display Cache.

Code

function display_cache_get_comment_publication_clears_host_entity_cache_setting_name($entity_type, $bundle) {
  $variable_name_parts = array(
    'display_cache_comment_publication_clears_host_entity_cache',
    $entity_type,
    $bundle,
  );
  return implode('_', $variable_name_parts);
}