You are here

commons_follow_node.install in Drupal Commons 7.3

File

modules/commons/commons_follow/commons_follow_node/commons_follow_node.install
View source
<?php

/**
* Update Flag link text.
*/
function commons_follow_node_update_3101() {
  features_revert(array(
    'commons_follow_node' => array(
      'flag',
    ),
  ));
  return array();
}

/**
 * Update profile notification page to show an account's following views
 * Not the current users following view.
 */
function commons_follow_node_update_3501() {
  $revert = array(
    'commons_follow_node' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

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

Functions

Namesort descending Description
commons_follow_node_update_3101 Update Flag link text.
commons_follow_node_update_3501 Update profile notification page to show an account's following views Not the current users following view.
commons_follow_node_update_3502 Replace the title attribute with the title field in view displays.