Tribe__Tickets_Plus__Commerce__EDD__Main::set_attendee_optout_choice( array $item )
Configure the option optout from attendees
Contents
Parameters
- $item
-
(array) (Required) Cart Item
Source
File: src/Tribe/Commerce/EDD/Main.php
public function set_attendee_optout_choice( $item ) {
$is_ticket = get_post_meta( $item['id'], $this->event_key, true );
if ( ! $is_ticket ) {
return $item;
}
$optout = isset( $_POST[ 'optout_' . $item['id'] ] ) ? (bool) $_POST[ 'optout_' . $item['id'] ] : false;
$item['options'][ $this->attendee_optout_key ] = $optout;
return $item;
}