Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WC_Install::associate_plugin_file( array $plugins, string $key )

Get slug from path and associate it with the path.


Description Description


Parameters Parameters

$plugins

(Required) Associative array of plugin files to paths.

$key

(Required) Plugin relative path. Example: woocommerce/woocommerce.php.


Top ↑

Source Source

File: includes/class-wc-install.php

	private static function associate_plugin_file( $plugins, $key ) {
		$path                 = explode( '/', $key );
		$filename             = end( $path );
		$plugins[ $filename ] = $key;
		return $plugins;
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.