iCalendar_Handler::get_feeds()

Initializes, sets the internal feeds array and returns it.


Return

(array)


Top ↑

Source

File: src/Tribe/Views/V2/iCalendar/iCalendar_Handler.php

	public function get_feeds() {
		if ( empty( $this->feeds ) ) {
			$this->feeds = array_map( static function ( $feed_class ) {
				return tribe( $feed_class );
			}, $this->default_feeds );
		}

		return $this->feeds;
	}

Top ↑

Changelog

Changelog
Version Description
5.12.3 Introduced.