Tribe__Events__Aggregator__Settings::get_import_limit_count_options()

Return a list of available options for the import numeric limit.


Return

(array) $options An array of arrays in the format [ <number> => <number> ].


Top ↑

Source

File: src/Tribe/Aggregator/Settings.php

	public function get_import_limit_count_options() {
		$numbers = array( 50, 100, 200, 300, 500, 750, 1000, 1500, 2000, 2500, 3000, 3500, 4000 );

		$options = array_combine( $numbers, $numbers );

		/**
		 * Filters the options available for the import numeric limit.
		 *
		 * @since 4.5.13
		 *
		 * @param array $options An array of arrays in the format [ <number> => <number> ].
		 */
		$options = apply_filters( 'tribe_aggregator_import_count_options', $options );

		return $options;
	}

Top ↑

Changelog

Changelog
Version Description
4.5.13 Introduced.