ActionScheduler_Versions::active_source_path
Deprecated since 3.9.2. It is no longer supported and may 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.
Returns
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() ActionScheduler Versions::active source path code WC 10.5.0
public function active_source_path(): string {
_deprecated_function( __METHOD__, '3.9.2', 'ActionScheduler_SystemInformation::active_source_path()' );
return ActionScheduler_SystemInformation::active_source_path();
}