Manager_Abstract::get_registered_objects()

Returns an associative array of objects to be registered.


Return

(array) An array in the shape [ <slug> => <class> ].


Top ↑

Source

File: src/Tribe/Integrations/Elementor/Manager_Abstract.php

	public function get_registered_objects() {
		/**
		 * Filters the list of objects available and registered.
		 *
		 * Both classes and built objects can be associated with a slug; if bound in the container the classes
		 * will be built according to the binding rules; objects will be returned as they are.
		 *
		 * @since 5.4.0
		 *
		 * @param array $widgets An associative array of objects in the shape `[ <slug> => <class> ]`.
		 */
		return (array) apply_filters( "tribe_events_pro_elementor_registered_{$this->type}", $this->objects );
	}

Top ↑

Changelog

Changelog
Version Description
5.4.0 Introduced.