You are here

function users_export_update_7002 in Users Export 7.2

Manual step(s) required, PLEASE READ NEXT PAGE...

File

./users_export.install, line 60
Handles installation steps for users_export.

Code

function users_export_update_7002(&$sandbox) {
  $output = array();
  if (!function_exists('loft_data_grids_info')) {
    $output[] = st('You must install the latest 2.x version of <a href="!url">Loft Data Grids</a> immediately; update instructions are found within the module\'s README file.', array(
      '!url' => url('http://www.intheloftstudios.com/packages/php/drupal_loft_data_grids'),
    ));
  }
  $output[] = st('Export format options are now controlled by Loft Data Grids; please <a href="!url">manually migrate your permissions</a> from <em>Users Export</em> to <em>Loft Data Grids</em> now.', array(
    '!url' => url('admin/people/permissions'),
  ));
  return implode("<br />", $output);
}