• File: Reset.php
  • Full Path: /home/lef/public_html/wp-content/plugins/sitepress-multilingual-cms/classes/options/Reset.php
  • File size: 224 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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' ] );
	}

}