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()


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.privacy.php

131
132
133
134
135
136
137
public function register_erasers( $erasers = array() ) {
 
    foreach ( $this->erasers as $id => $eraser ) {
        $erasers[ $id ] = $eraser;
    }
    return $erasers;
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.18.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.