LLMS_Abstract_Privacy::register_exporters( array $exporters = array() )
Add all registered erasers to the array of existing exporters.
Parameters Parameters
- $exporters
-
(array) (Optional) Existing exporters.
Default value: array()
Return Return
(array)
Source Source
File: includes/abstracts/llms.abstract.privacy.php
149 150 151 152 153 154 155 | public function register_exporters( $exporters = array () ) { foreach ( $this ->exporters as $id => $exporter ) { $exporters [ $id ] = $exporter ; } return $exporters ; } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.18.0 | Introduced. |