ActionScheduler_Store::get_scheduled_date_string_local()protectedWC 1.0

Get the time MySQL formated date/time string for an action's (next) scheduled date.

Method of the class: ActionScheduler_Store{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_scheduled_date_string_local( $action, $scheduled_date );
$action(ActionScheduler_Action) (required)
-
$scheduled_date(DateTime)
(optional)
Default: NULL

ActionScheduler_Store::get_scheduled_date_string_local() code WC 8.7.0

protected function get_scheduled_date_string_local( ActionScheduler_Action $action, DateTime $scheduled_date = NULL ) {
	$next = null === $scheduled_date ? $action->get_schedule()->get_date() : $scheduled_date;
	if ( ! $next ) {
		$next = date_create();
	}

	ActionScheduler_TimezoneHelper::set_local_timezone( $next );
	return $next->format( 'Y-m-d H:i:s' );
}