action_filter_loader = $action_filter_loader; $this->settings = $settings; } public function run() { $this->action_filter_loader->load( $this->get_actions_to_load_always() ); if ( $this->settings->is_enabled() ) { $this->action_filter_loader->load( $this->get_actions_to_load_when_module_enabled() ); } } /** * @return array */ private function get_actions_to_load_always() { return array( 'WPML_TF_WP_Cron_Events_Factory', ); } /** * @return array */ private function get_actions_to_load_when_module_enabled() { return array( 'WPML_TF_XML_RPC_Hooks_Factory', 'WPML_TF_Translation_Service_Change_Hooks_Factory', 'WPML_TF_Translation_Queue_Hooks_Factory', 'WPML_TM_TF_Feedback_List_Hooks_Factory', 'WPML_TM_TF_AJAX_Feedback_List_Hooks_Factory', ); } }