Tribe__Process__Queue::sync_handle( array|null $data_source = null )

Concrete implementation of the base handler method.

Just a proxy to the sync_process method.


Parameters

$data_source

(array|null) (Optional) If not provided the method will read the handler data from the request array.

Default value: null


Top ↑

Return

(array|mixed|null) The synchronous process result.


Top ↑

Source

File: src/Tribe/Process/Queue.php

	public function sync_handle( array $data_source = null ) {
		// In the base implementation the data source is unused and read from the database.
		return $this->sync_process();
	}

Top ↑

Changelog

Changelog
Version Description
4.9.5 Introduced.