Tribe__Process__Queue::get_meta_key( string $key )
Returns the name of the transient that will store the queue meta information for the specific key.
Contents
Parameters
- $key
-
(string) (Required)
Return
(string)
Source
File: src/Tribe/Process/Queue.php
public function get_meta_key( $key ) {
$key = preg_replace( '/^(.*)_\\d+$/', '$1', $key );
return $key . '_meta';
}
Changelog
| Version | Description |
|---|---|
| 4.7.12 | Introduced. |