Tribe__Admin__Notice__Marketing::bf_2018_should_display()

Whether the Black Friday 2018 notice should display.

Unix times for Nov 20 2018 @ 6am UTC and Nov 26 2018 @ 6am UTC. 6am UTC is midnight for TheEventsCalendar.com, which uses the America/Los_Angeles time zone.


Return

(boolean)


Top ↑

Source

File: src/Tribe/Admin/Notice/Marketing.php

	public function bf_2018_should_display() {
		$bf_sale_start = $this->get_bf_2018_start_time();
		$bf_sale_end   = $this->get_bf_2018_end_time();

		return $bf_sale_start <= time() && time() < $bf_sale_end;
	}

Top ↑

Changelog

Changelog
Version Description
4.7.23 Introduced.