You are here

function imagecache_form_system_file_system_settings_alter in ImageCache 6.2

Implementation of hook_form_FORM_ID_alter.

The file system form is modified to include an extra submit handler, so that imagecache can rebuild the menu after the filesystem path is changed.

File

./imagecache.module, line 107
Dynamic image resizer and image cacher.

Code

function imagecache_form_system_file_system_settings_alter(&$form, &$form_state) {
  $form['#submit'][] = 'imagecache_system_file_system_submit';
}