function weather_es_block_info in Weather_es 7
@author jmsirvent
File
- ./
weather_es.module, line 122
Code
function weather_es_block_info() {
$blocks = array();
$blocks['system'] = array(
'info' => t('Weather_es: system-wide'),
'cache' => DRUPAL_NO_CACHE,
);
$blocks['user'] = array(
'info' => t('Weather_es: custom user'),
'cache' => DRUPAL_NO_CACHE,
);
return $blocks;
}