You are here

function vsf_manualcrop_init in Visual select file 7

Implements hook_init().

File

submodules/vsf_manualcrop/vsf_manualcrop.module, line 6

Code

function vsf_manualcrop_init() {

  // Thumbnail popup selection view.
  if (current_path() == 'admin/visual_select_file') {
    $path = drupal_get_path('module', 'vsf_manualcrop');
    drupal_add_js($path . '/vsf_manualcrop.js');
  }
  elseif (preg_match('#^file/\\d+/vsf_manualcrop/\\w+#', current_path())) {
    _visual_select_file_suppress_xbars('vsf_manualcrop');
  }
}