You are here

function image_resize_filter_install in Image Resize Filter 6

Implementation of hook_install().

File

./image_resize_filter.install, line 6

Code

function image_resize_filter_install() {
  drupal_set_message(t('The image resize filter has been installed. Before this does anything, the image resize filter needs to be added to one or more input formats. Visit the <a href="!url">input format administration</a> to set up this filter.', array(
    '!url' => url('admin/settings/filters'),
  )), 'warning');
}