function shorten_block_configure in Shorten URLs 7
Same name and namespace in other branches
- 7.2 shorten.module \shorten_block_configure()
Implements hook_block_configure().
File
- ./
shorten.module, line 89 - Shortens URLs via external services.
Code
function shorten_block_configure($delta = '') {
if ($delta == 'shorten_short') {
drupal_set_message(t('This block displays the short URL for the page on which it is shown, which can slow down uncached pages in some instances.'), 'warning');
}
}