Tribe__Process__Handler::action()

Returns the async process action name.

Extending classes must override this method to return their unique action slug.


Return

(string)


Top ↑

Source

File: src/Tribe/Process/Handler.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." );
	}

Top ↑

Changelog

Changelog
Version Description
4.7.12 Introduced.