AddTMAllowedOption.php 224 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php use WPML\Plugins; class AddTMAllowedOption extends WPML_Upgrade_Run_All { /** * @return bool */ public function run() { add_action('init', [ Plugins::class, 'updateTMAllowedOption' ] ); return true; } }