init_hooks(); } return $wpml_admin_notices; } } if ( ! function_exists( 'wpml_is_ajax' ) ) { /** * @see sitepress-multilingual-cms/inc/functions.php * * @return bool */ function wpml_is_ajax() { if ( defined( 'DOING_AJAX' ) ) { return true; } return ( isset( $_SERVER['HTTP_X_REQUESTED_WITH'] ) && wpml_mb_strtolower( $_SERVER['HTTP_X_REQUESTED_WITH'] ) == 'xmlhttprequest' ) ? true : false; } }