Hooks.php 382 Bytes
<?php

namespace WPML\PostTranslation\SpecialPage;

class Hooks implements \IWPML_Backend_Action {

	public function add_hooks() {
		add_action( 'current_screen', [ $this, 'deleteCacheOnSettingPage' ] );
	}

	public function deleteCacheOnSettingPage( \WP_Screen $currentScreen ) {
		if ( 'options-reading' === $currentScreen->id ) {
			\WPML_Pre_Option_Page::clear_cache();
		}
	}
}