You are here

function css_emimage_system_info_alter in CSS Embedded Images 7

Implements hook_system_info_alter().

File

./css_emimage.module, line 168
CSS Embedded Images module.

Code

function css_emimage_system_info_alter(&$info, $file, $type) {
  static $config_path;
  if ($file->name != 'css_emimage') {
    return;
  }
  if (!module_exists('advagg')) {
    return;
  }
  $info['configure'] = advagg_admin_config_root_path() . '/advagg/css-emimage';
  $info['package'] = 'Advanced CSS/JS Aggregation';
}