Yoast\WP\SEO\Config

Wincher_PKCE_Provider::getConfigurableOptions()protectedYoast 1.0

Returns all options that can be configured.

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

Хуков нет.

Возвращает

Массив. The configurable options.

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

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

Код Wincher_PKCE_Provider::getConfigurableOptions() Yoast 22.4

protected function getConfigurableOptions() {
	return \array_merge(
		$this->getRequiredOptions(),
		[
			'accessTokenMethod',
			'accessTokenResourceOwnerId',
			'scopeSeparator',
			'responseError',
			'responseCode',
			'responseResourceOwnerId',
			'scopes',
			'pkceMethod',
		]
	);
}