You are here

insert_view.install in Insert View 6.2

Install, update and uninstall functions for the insert_view module.

File

insert_view.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the insert_view module.
 */

/**
 * Show warning when updating from version 1.
 */
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;
}

Functions

Namesort descending Description
insert_view_update_6200 Show warning when updating from version 1.