Tribe__Events__Community__Tickets__Gateway__Abstract::__construct()
constructor!
Source
File: src/Tribe/Gateway/Abstract.php
public function __construct() {
$community_tickets = tribe( 'community-tickets.main' );
$settings = get_option( Tribe__Events__Community__Tickets__Main::OPTIONNAME, $community_tickets->option_defaults );
foreach ( $settings as $key => $value ) {
if ( false === strpos( $key, 'site_fee' ) ) {
continue;
}
$this->$key = $value;
}
}