golden hour
/home/phakp/public_html/wp/wp-content/plugins/wpforms-lite/src/Integrations
⬆️ Go Up
Upload
File/Folder
Size
Actions
Elementor
-
Del
OK
Gutenberg
-
Del
OK
IntegrationInterface.php
418 B
Del
OK
Loader.php
2.12 KB
Del
OK
SiteHealth
-
Del
OK
UsageTracking
-
Del
OK
WPMailSMTP
-
Del
OK
Edit: IntegrationInterface.php
<?php namespace WPForms\Integrations; /** * Interface IntegrationInterface defines required methods for integrations to work properly. * * @since 1.4.8 */ interface IntegrationInterface { /** * Indicate if current integration is allowed to load. * * @since 1.4.8 * * @return bool */ public function allow_load(); /** * Load an integration. * * @since 1.4.8 */ public function load(); }
Save