You are here

function imagecache_actions_update_7001 in ImageCache Actions 7

Same name and namespace in other branches
  1. 8 imagecache_actions.install \imagecache_actions_update_7001()

Warn about the soft dependency on system stream wrapper module.

File

./imagecache_actions.install, line 5

Code

function imagecache_actions_update_7001(&$sandbox) {
  drupal_set_message(t("Imagecache Actions: If you use the module:// notation anywhere in an image effect, you must now install the !module module.", array(
    '!module' => l('System Stream Wrapper', 'https://drupal.org/project/system_stream_wrapper', array(
      'external' => TRUE,
    )),
  )), 'warning');
}