You are here

function commons_pages_strongarm_alter in Drupal Commons 7.3

Implements hook_strongarm_alter().

File

modules/commons/commons_pages/commons_pages.module, line 12

Code

function commons_pages_strongarm_alter(&$items) {

  // Expose the Page content type for integration with Commons Groups.
  if (isset($items['commons_groups_entity_types'])) {
    $items['commons_groups_entity_types']->value['node']['page'] = 1;
  }
}