Tribe__Date_Utils::is_weekend( $curdate )

Returns true if the timestamp is a weekend.


Parameters

$curDate

(int) (Required) A timestamp.


Top ↑

Return

(bool) If the timestamp is a weekend.


Top ↑

Source

File: src/Tribe/Date_Utils.php

		public static function is_weekend( $curdate ) {
			return in_array( date( 'N', $curdate ), array( 6, 7 ) );
		}