You are here

function insert_view_update_6200 in Insert View 6.2

Same name and namespace in other branches
  1. 7.2 insert_view.install \insert_view_update_6200()

Show warning when updating from version 1.

File

./insert_view.install, line 11
Install, update and uninstall functions for the insert_view module.

Code

function insert_view_update_6200() {
  $ret = array();
  $ret[] = array(
    'success' => TRUE,
    'query' => 'WARNING: If you used multiple views arguments with insert_view filter, then you will have to update those nodes manually to use the new syntax.',
  );
  return $ret;
}