You are here

commons_polls.install in Drupal Commons 7.3

File

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

/**
 * Set default polls roles upon enable
 */
function commons_polls_enable() {
  $revert = array(
    'commons_polls' => array(
      'og_features_permission',
    ),
  );
  features_revert($revert);
  $groups = og_get_all_group();
  foreach ($groups as $gid) {
    commons_groups_features_permission_rebuild('commons_polls', $gid);
  }
}

/**
 * Disable summary on Poll nodes.
 */
function commons_polls_update_7000() {
  $revert = array(
    'commons_polls' => array(
      'field_instance',
    ),
  );
  features_revert($revert);
  return array();
}

/**
 * Grant users the ability to vote on polls.
 */
function commons_polls_update_7001() {
  $revert = array(
    'commons_polls' => array(
      'user_permission',
    ),
  );
  features_revert($revert);
  return array();
}

/**
 * Standardize Browsing Widget views.
 */
function commons_polls_update_7002() {
  $revert = array(
    'commons_polls' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

/**
 * Display sticky content at top of lists.
 */
function commons_polls_update_7003() {
  $revert = array(
    'commons_polls' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

/**
 * Add links to node teasers in the browsing widget.
 */
function commons_polls_update_7004() {
  $revert = array(
    'commons_polls' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

/**
 * Improve the browsing widget empty text.
 */
function commons_polls_update_7005() {
  $revert = array(
    'commons_polls' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

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

/**
 * Standardize browsing widget field weights.
 */
function commons_polls_update_7007() {
  $revert = array(
    'commons_polls' => array(
      'field_instance',
    ),
  );
  features_revert($revert);
  return array();
}

Functions

Namesort descending Description
commons_polls_enable Set default polls roles upon enable
commons_polls_update_7000 Disable summary on Poll nodes.
commons_polls_update_7001 Grant users the ability to vote on polls.
commons_polls_update_7002 Standardize Browsing Widget views.
commons_polls_update_7003 Display sticky content at top of lists.
commons_polls_update_7004 Add links to node teasers in the browsing widget.
commons_polls_update_7005 Improve the browsing widget empty text.
commons_polls_update_7006 Replace the title attribute with the title field in view displays.
commons_polls_update_7007 Standardize browsing widget field weights.