LLMS_Processors::get( string $name )
Access a single loaded processor instance
Parameters Parameters
- $name
-
(string) (Required) Name of the processor.
Return Return
(LLMS_Abstract_Processor|false) Instance of the processor if found, otherwise false.
Source Source
File: includes/processors/class.llms.processors.php
public function get( $name ) {
if ( isset( $this->processors[ $name ] ) ) {
return $this->processors[ $name ];
}
return false;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.15.0 | Introduced. |