Heray-Was-Here
Server : Apache
System : Linux hybrid3195.ca.ns.planethoster.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : alliancerealtynb ( 1004)
PHP Version : 7.4.33
Disable Function : noop
Directory :  /home/alliancerealtynb/sitepress-multilingual-cmsOLDOLD/classes/setup/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/sitepress-multilingual-cmsOLDOLD/classes/setup/DisableNotices.php
<?php

namespace WPML\Setup;

use WPML\FP\Lst;
use WPML\FP\Obj;

class DisableNotices implements \IWPML_DIC_Action, \IWPML_Backend_Action {
	public function add_hooks() {

		add_action( 'wp_before_admin_bar_render', function () {
			$iSetupPage = Lst::includes( Obj::propOr( '', 'page', $_GET ), [
				'sitepress-multilingual-cms/menu/setup.php',
				'sitepress-multilingual-cms/menu/languages.php'
			] );

			if ( $iSetupPage ) {
				remove_all_actions( 'admin_notices' );
				remove_all_actions( 'all_admin_notices' );
			}

		} );
	}
}

Hry