get_plugin_files() WP 2.8.0
Get a list of a plugin's files.
Хуки из функции
Возвращает
Строку[]
. Array of file names relative to the plugin root.
Использование
get_plugin_files( $plugin );
- $plugin(строка) (обязательный)
- Path to the plugin file relative to the plugins directory.
Список изменений
С версии 2.8.0 | Введена. |
Код get_plugin_files() get plugin files WP 5.7
function get_plugin_files( $plugin ) {
$plugin_file = WP_PLUGIN_DIR . '/' . $plugin;
$dir = dirname( $plugin_file );
$plugin_files = array( plugin_basename( $plugin_file ) );
if ( is_dir( $dir ) && WP_PLUGIN_DIR !== $dir ) {
/**
* Filters the array of excluded directories and files while scanning the folder.
*
* @since 4.9.0
*
* @param string[] $exclusions Array of excluded directories and files.
*/
$exclusions = (array) apply_filters( 'plugin_files_exclusions', array( 'CVS', 'node_modules', 'vendor', 'bower_components' ) );
$list_files = list_files( $dir, 100, $exclusions );
$list_files = array_map( 'plugin_basename', $list_files );
$plugin_files = array_merge( $plugin_files, $list_files );
$plugin_files = array_values( array_unique( $plugin_files ) );
}
return $plugin_files;
}