• File: IntegrationInterface.php
  • Full Path: /home/matthif/www/wp-content/plugins/wpforms-lite/src/IntegrationInterface.php
  • Date Modified: 02/16/2024 11:45 AM
  • File size: 418 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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();
}