ActionScheduler::plugin_urlpublic staticWC 1.0

Get the absolute URL to the plugin directory, or a file therein

Method of the class: ActionScheduler{}

No Hooks.

Returns

String.

Usage

$result = ActionScheduler::plugin_url( $path );
$path(string) (required)
Path relative to plugin directory.

ActionScheduler::plugin_url() code WC 10.3.6

public static function plugin_url( $path ) {
	return plugins_url( $path, self::$plugin_file );
}