Class Factory
The Factory class is a base class which can be used to make any classes externally extensible. A filter is added for wpgmza_create_{class} which is called by createInstance. If this filter returns a subclass of Factory, that filter will override the default class and will be used.
IMPORTANT: Any objects which subclass Factory MUST be created by calling createInstance on the subclass. Calling new on the constructor directly will not cause this filter to fire, and the extended class will not be used.
Direct known subclasses
WPGMZA\Crud, WPGMZA\Integration\Gutenberg, WPGMZA\MarkerFilter, WPGMZA\Plugin, WPGMZA\RestAPI, WPGMZA\TableIndirect known subclasses
WPGMZA\AdminMarkerDataTable, WPGMZA\AjaxTable, WPGMZA\DataTable, WPGMZA\GoogleMap, WPGMZA\Map, WPGMZA\Marker, WPGMZA\MarkerDataTable
public static
|
#
createInstance( )
Creates an instance of the desired subclass, this will return the default instance if no filter is used to override the process, or will return the extended class if a filter has been bound |