Tribe__Process__Queue::action()
Returns the async process action name.
Extending classes must override this method to return their unique action slug.
Return
(string)
Source
File: src/Tribe/Process/Queue.php
public static function action() {
$class = get_called_class();
throw new RuntimeException( "Class {$class} should override the `action` method to define its own unique identifier." );
}
Changelog
| Version | Description |
|---|---|
| 4.7.12 | Introduced. |