WC_Rate_Limiter::storage_id()public staticWC 1.0

Constructs key name from action identifier. Left in for backwards compatibility.

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

Хуков нет.

Возвращает

Строку.

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

$result = WC_Rate_Limiter::storage_id( $action_id );
$action_id(строка) (обязательный)
Identifier of the action.

Код WC_Rate_Limiter::storage_id() WC 8.7.0

public static function storage_id( $action_id ) {
	return $action_id;
}