You are here

commons_search.install in Drupal Commons 7.3

File

modules/commons/commons_search/commons_search.install
View source
<?php

/**
 * Disable rich_snippets module
 */
function commons_search_update_7001() {
  module_disable(array(
    'rich_snippets',
  ));
}

/**
 * Replace the title attribute with the title field in view displays.
 */
function commons_search_update_7002() {
  $revert = array(
    'commons_search' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

Functions

Namesort descending Description
commons_search_update_7001 Disable rich_snippets module
commons_search_update_7002 Replace the title attribute with the title field in view displays.