ActionScheduler_HybridStore::query_actions()publicWC 1.0

Find actions matching the query in the secondary source first. If any are found, migrate them immediately. Then the secondary store will contain the canonical results.

Метод класса: ActionScheduler_HybridStore{}

Хуков нет.

Возвращает

int[].

Использование

$ActionScheduler_HybridStore = new ActionScheduler_HybridStore();
$ActionScheduler_HybridStore->query_actions( $query, $query_type );
$query(массив)
-
По умолчанию: []
$query_type(строка)
Whether to select or count the results. Default, select.
По умолчанию: 'select'

Код ActionScheduler_HybridStore::query_actions() WC 8.7.0

public function query_actions( $query = [], $query_type = 'select' ) {
	$found_unmigrated_actions = $this->secondary_store->query_actions( $query, 'select' );
	if ( ! empty( $found_unmigrated_actions ) ) {
		$this->migrate( $found_unmigrated_actions );
	}

	return $this->primary_store->query_actions( $query, $query_type );
}