-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwpforms-bigmailer-integration.php
More file actions
36 lines (32 loc) · 1.04 KB
/
wpforms-bigmailer-integration.php
File metadata and controls
36 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Plugin Name: WPForms BigMailer Integration
* Plugin URI: https://#
* Description: Enables you to easily send WPForms subscribers to your BigMailer account.
* Version: 1.1.0
* Author: Eric Mathison
* Author URI: https://#
* Text Domain: wpforms-bigmailer-integration
* Domain Path: /languages
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*
* @package WPForms_BigMailer_Integration
* @since 1.1.0
* @copyright Copyright (c) 2021, Eric Mathison
* @license GPL-2.0+
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Define plugin constants.
define( 'WPFORMS_BIGMAILER_INTEGRATION_VERSION', '1.1.0' );
/**
* Load plugin files.
*/
function wpforms_bigmailer_integration() {
load_plugin_textdomain( 'wpforms-bigmailer-integration', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-wpforms-bigmailer-integration.php' );
}
add_action('wpforms_loaded', 'wpforms_bigmailer_integration');