drupal_render_cid_create
- Versions
- 7
drupal_render_cid_create($elements)
Create the cache ID for a renderable element.
This creates the cache ID string, either by returning the #cache['cid'] property if present or by building the cache ID out of the #cache['keys'] and, optionally, the #cache['granularity'] properties.
Parameters
$elements A renderable array.
Return value
The cache ID string, or FALSE if the element may not be cached.
Code
includes/common.inc, line 5290
<?php
function drupal_render_cid_create($elements) {
if (isset($elements['#cache']['cid'])) {
return $elements['#cache']['cid'];
}
elseif (isset($elements['#cache']['keys'])) {
$granularity = isset($elements['#cache']['granularity']) ? $elements['#cache']['granularity'] : NULL;
// Merge in additional cache ID parts based provided by drupal_render_cid_parts().
$cid_parts = array_merge($elements['#cache']['keys'], drupal_render_cid_parts($granularity));
return implode(':', $cid_parts);
}
return FALSE;
}
?>Login or register to post comments 