golden hour
/home/phakp/public_html/wp/wp-content/plugins/wpforms-lite/src/Providers/Provider/Settings
⬆️ Go Up
Upload
File/Folder
Size
Actions
FormBuilder.php
12.7 KB
Del
OK
FormBuilderInterface.php
693 B
Del
OK
PageIntegrations.php
6.56 KB
Del
OK
PageIntegrationsInterface.php
579 B
Del
OK
Edit: PageIntegrationsInterface.php
<?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 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 ); }
Save