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


Top ↑

Return Return

(array)


Top ↑

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;
}

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.