LLMS_Abstract_Session_Database_Handler::get_cache_key( string $key )

Retrieve a prefixed cache key


Parameters Parameters

$key

(string) (Required) Unprefixed cache key.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/abstracts/llms-abstract-session-database-handler.php

	protected function get_cache_key( $key ) {
		return LLMS_Cache_Helper::get_prefix( $this->cache_group ) . $key;
	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.