Tribe__Events__Aggregator__API__Origins::get_name( $id )
Source
File: src/Tribe/Aggregator/API/Origins.php
public function get_name( $id ) {
$this->get();
if ( empty( $this->origins[ $id ] ) ) {
return __( 'Event Aggregator', 'the-events-calendar' );
}
return $this->origins[ $id ]->name;
}