LLMS_Processors::get( string $name )

Access a single loaded processor instance


Description Description


Parameters Parameters

$name

(string) (Required) name of the processor


Top ↑

Return Return

(obj|false) instance of the processor if found, otherwise false


Top ↑

Source Source

File: includes/processors/class.llms.processors.php

	public function get( $name ) {

		if ( isset( $this->processors[ $name ] ) ) {
			return $this->processors[ $name ];
		}

		return false;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.15.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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