Hnn(p'U''U''UYpS@. A!V`0 OXSPS@. PA!`0H`S@. @Ip'U''U''UP(S`I A nYH4`!m`xShS`I A!RYH4VФSS`I 0A!lYH4`JS`I JA!XlYH4]SS`I]A!_H4 @SS`IA oYH4n^%S`I%AjYH4eS`IeA!@8^H4`SS`IA iYH4e^ (S`I`(A0^H4 оS`IAhY return array_merge( $excluded, $this->dynamic_lists->get_combine_js_excluded_inline() ); } /** * Add the preload exclusions to the array * * @param array $excluded Array of ignored URL regex. * * @return array */ public function add_preload_exclusions( array $excluded = [] ): array { return array_merge( $excluded, $this->dynamic_lists->get_preload_exclusions() ); } /** * Add the js files exclusions to the array * * @param array $js_files Array of files. * * @return array */ public function add_js_exclude_files( array $js_files = [] ): array { return array_merge( $js_files, $this->dynamic_lists->get_js_exclude_files() ); } /** * Add incompatible plugins to the array * * @param array $plugins Array of $plugins. * * @return array */ public function add_incompatible_plugins_to_deactivate( $plugins = [] ): array { return array_merge( (array) $plugins, $this->dynamic_lists->get_incompatible_plugins() ); } /** * Add the staging exclusions to the array * * @param array $stagings Array of staging urls. * * @return array */ public function add_staging_exclusions( $stagings = [] ): array { return array_merge( (array) $stagings, (array) $this->dynamic_lists->get_stagings() ); } /** * Add the LRC exclusions to the array * * @param array $exclusions Array of LRC exclusions. * * @return array */ public function add_lrc_exclusions( $exclusions ): array { return array_merge( (array) $exclusions, $this->dynamic_lists->get_lrc_exclusions() ); } }