You are here

function og_membership_delete_action_info in Organic groups 7.2

@file Action to set the state of a user in a group.

File

includes/actions/membership_delete.action.inc, line 8
Action to set the state of a user in a group.

Code

function og_membership_delete_action_info() {
  return array(
    'og_membership_delete_action' => array(
      'type' => 'og_membership',
      'label' => t('Remove from group'),
      'behavior' => array(
        'deletes_property',
      ),
      'configurable' => FALSE,
    ),
  );
}