ActionScheduler_Versions::active_source_path()publicWC 1.0

Deprecated from version 3.9.2. It is no longer supported and can be removed in future releases. Use ActionScheduler_SystemInformation::active_source_path() instead.

Returns the directory path for the currently active installation of Action Scheduler.

Method of the class: ActionScheduler_Versions{}

No Hooks.

Return

String.

Usage

$ActionScheduler_Versions = new ActionScheduler_Versions();
$ActionScheduler_Versions->active_source_path(): string;

Changelog

Deprecated since 3.9.2 Use ActionScheduler_SystemInformation::active_source_path().

ActionScheduler_Versions::active_source_path() code WC 9.8.1

public function active_source_path(): string {
	_deprecated_function( __METHOD__, '3.9.2', 'ActionScheduler_SystemInformation::active_source_path()' );
	return ActionScheduler_SystemInformation::active_source_path();
}