Tribe__Events__Admin__Event_Meta_Box::get_timepicker_step( mixed $type = null )

Gets the Step for the Timepicker


Parameters

$type

(mixed) (Optional)

Default value: null


Top ↑

Return

(int)


Top ↑

Source

File: src/Tribe/Admin/Event_Meta_Box.php

	public function get_timepicker_step( $type = null ) {
		/**
		 * Allows developers to filter what is the Step for the Timepicker
		 *
		 * @since 4.4
		 *
		 * @param int    $step
		 * @param string $type
		 * @param self   $metabox
		 */
		return (int) apply_filters( 'tribe_events_meta_box_timepicker_step', 30, $type, $this );
	}

Top ↑

Changelog

Changelog
Version Description
4.4 Introduced.