Tribe__Date_Utils::isWeekend( $curdate )

Deprecated camelCase version of self::is_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 isWeekend( $curdate ) {
			_deprecated_function( __METHOD__, '3.11', __CLASS__ . '::is_weekend' );
			return self::is_weekend( $curdate );
		}