function _coder_6x_cache_get_warning in Coder 5
Same name and namespace in other branches
- 5.2 includes/coder_6x.inc \_coder_6x_cache_get_warning()
1 string reference to '_coder_6x_cache_get_warning'
- coder_6x_reviews in includes/
coder_6x.inc - @file This include file implements coder functionality for 5.x -> 6.x upgrades
File
- includes/
coder_6x.inc, line 375 - This include file implements coder functionality for 5.x -> 6.x upgrades
Code
function _coder_6x_cache_get_warning() {
return array(
'#warning' => t('!cache_set and !cache_get automatically (un)serialize complex data types', array(
'!cache_set' => theme('drupalapi', 'cache_set'),
'!cache_get' => theme('drupalapi', 'cache_get'),
)),
'#link' => 'http://drupal.org/node/114774#cache-data-parameter',
);
}