Tribe__Date_Utils::isWeekday( $curdate )

Deprecated camelCase version of self::is_weekday


Parameters

$curDate

(int) (Required) A timestamp.


Top ↑

Return

(bool) If the timestamp is a weekday.


Top ↑

Source

File: src/Tribe/Date_Utils.php

		public static function isWeekday( $curdate ) {
			_deprecated_function( __METHOD__, '3.11', __CLASS__ . '::is_weekday' );
			return self::is_weekday( $curdate );
		}