function cacheflush_preprocess_table in CacheFlush 7
Same name and namespace in other branches
- 7.2 cacheflush.admin.inc \cacheflush_preprocess_table()
Implements hook_preprocess_table().
File
- ./
cacheflush.admin.inc, line 65 - Cacheflush admin for list presets.
Code
function cacheflush_preprocess_table(&$variables) {
// Changing the checkbox header to Status string.
if (isset($variables['attributes']['id']) && $variables['attributes']['id'] == 'cachefulsher_preset_list') {
$variables['header'][0] = t('Status');
}
}