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
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. |