BSF_Analytics::load_deactivation_survey_actions()

Function to load the deactivation survey form actions.


Description


Return

(void)


Source

File: admin/bsf-analytics/class-bsf-analytics.php

		public function load_deactivation_survey_actions() {

			// If not in a admin area then return it.
			if ( ! is_admin() ) {
				return;
			}

			add_filter( 'uds_survey_vars', array( $this, 'add_slugs_to_uds_vars' ) );
			add_action( 'admin_footer', array( $this, 'load_deactivation_survey_form' ) );
		}

Changelog

Changelog
Version Description
1.1.6 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.