Reset.php 224 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php namespace WPML\Options; use WPML\WP\OptionManager; class Reset implements \IWPML_Backend_Action { public function add_hooks() { add_filter( 'wpml_reset_options', [ new OptionManager(), 'reset_options' ] ); } }