PUM_CF7_Integration::init()

Initialize if CF7 is active.


Description Description


Source Source

File: includes/integrations/class-pum-cf7.php

	public static function init() {
		add_filter( 'pum_get_cookies', array( __CLASS__, 'register_cookies' ) );
		add_filter( 'wpcf7_editor_panels', array( __CLASS__, 'editor_panels' ) );
		add_action( 'wpcf7_after_save', array( __CLASS__, 'save' ) );
		add_filter( 'wpcf7_form_elements', array( __CLASS__, 'form_elements' ) );
		add_action( 'popmake_preload_popup', array( __CLASS__, 'preload' ) );
	}


Top ↑

User Contributed Notes User Contributed Notes

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