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.
LLMS_Processors::load_all()
Load all processors.
Return Return
(void)
Source Source
File: includes/processors/class.llms.processors.php
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | private function load_all() { /** * Filter the list of available processors to be loaded. * * Third parties can use this filter to load custom processors. * * @since 5.0.0 * * @see llms_load_processor_path To add a custom load path for the loaded processor. * * @param string[] $classes A list of processor class ids/slugs. */ $classes = apply_filters( 'llms_load_processors' , $this ->classes ); foreach ( $classes as $name ) { $class = $this ->load_processor( $name ); if ( $class ) { $this ->processors[ $name ] = $class ; } } } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.8.0 | Use the value from the llms_load_processors filter. |
3.15.0 | Introduced. |