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