array( 'type' => 'entity', 'label' => t('Delete item'), 'configurable' => FALSE, 'behavior' => array('deletes_property'), 'triggers' => array('any'), ), ); } function views_bulk_operations_delete_item($entity, $context) { $info = entity_get_info($context['entity_type']); $entity_id = $entity->{$info['entity keys']['id']}; entity_delete($context['entity_type'], $entity_id); }