File "PageIntegrationsInterface.php"

Full path: C:/Inetpub/vhosts/drshti.com/httpdocs/wp-content/plugins/wpforms-lite/src/Providers/Provider/Settings/PageIntegrationsInterface.php
File size: 584 B (584 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php

namespace WPForms\Providers\Provider\Settings;

/**
 * Interface PageIntegrationsInterface defines methods that are common among all Integration page providers content.
 *
 * @since 1.4.7
 */
interface PageIntegrationsInterface {

	/**
	 * Display the data for the Integrations tab.
	 * This is a default one that can be easily overwritten inside the child class of a specific provider.
	 *
	 * @since 1.4.7
	 *
	 * @param array $active   Array of activated providers addons.
	 * @param array $settings Providers options.
	 */
	public function display( $active, $settings );
}