You are here

commons_pages.install in Drupal Commons 7.3

File

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

/**
 * Disable summary on Page nodes.
 */
function commons_pages_update_7000() {
  $revert = array(
    'commons_pages' => array(
      'field_instance',
    ),
  );
  features_revert($revert);
  return array();
}

Functions

Namesort descending Description
commons_pages_update_7000 Disable summary on Page nodes.