View::get_ical_ids( $per_page )

{@inheritdoc}


Source

File: src/Tribe/Views/V2/View.php

	public function get_ical_ids( $per_page ) {
		$this->setup_ical_repository_args( $per_page );

		$ids = $this->repository->get_ids();

		// Reset the repository args to force a re-initialization of the repository on next run.
		$this->repository_args = null;

		return $ids;
	}