You are here

function commons_groups_update_toggle in Drupal Commons 7.3

Ajax callback page to toggle the group update status to off See https://drupal.org/node/2059857 for more information

1 string reference to 'commons_groups_update_toggle'
commons_groups_menu in modules/commons/commons_groups/commons_groups.module
Implements hook_menu Used with commons_groups_help and the commons groups update view to turn off the warning message to update groups

File

modules/commons/commons_groups/commons_groups.module, line 229

Code

function commons_groups_update_toggle() {
  variable_set('commons_groups_needs_update', FALSE);
  return TRUE;
}