You are here

function image_resize_filter_form_system_file_system_settings_alter in Image Resize Filter 7

Same name and namespace in other branches
  1. 6 image_resize_filter.module \image_resize_filter_form_system_file_system_settings_alter()

Implements hook_form_FORM_ID_alter().

File

./image_resize_filter.module, line 120
After adding to a text format, this filter will parse the contents of submitted content and automatically scale image files to match the set dimensions of img tags.

Code

function image_resize_filter_form_system_file_system_settings_alter($form, $form_state) {
  $form['#submit'][] = 'image_resize_filter_file_system_settings_submit';
}