ActionScheduler_Abstract_ListTable::get_request_status()protectedWC 1.0

Return the status filter for this request, if any.

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

Хуков нет.

Возвращает

Строку.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_request_status();

Код ActionScheduler_Abstract_ListTable::get_request_status() WC 8.7.0

protected function get_request_status() {
	$status = ( ! empty( $_GET['status'] ) ) ? sanitize_text_field( wp_unslash( $_GET['status'] ) ) : ''; //phpcs:ignore WordPress.Security.NonceVerification.Recommended
	return $status;
}