Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: plugin_files_exclusions

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
233      if ( is_dir( $dir ) && WP_PLUGIN_DIR !== $dir ) {
234
235           /**
236            * Filters the array of excluded directories and files while scanning the folder.
237            *
238            * @since 4.9.0
239            *
240            * @param string[] $exclusions Array of excluded directories and files.
241            */
242           $exclusions = (array) apply_filters( 'plugin_files_exclusions', array( 'CVS', 'node_modules', 'vendor', 'bower_components' ) );
243
244           $list_files = list_files( $dir, 100, $exclusions );
245           $list_files = array_map( 'plugin_basename', $list_files );
246
247           $plugin_files = array_merge( $plugin_files, $list_files );
248           $plugin_files = array_values( array_unique( $plugin_files ) );
249      }
250
251      return $plugin_files;