PluginProbe
MailPoet – Newsletters, Email Marketing, and Automation / 3.0.0-beta.2
MailPoet – Newsletters, Email Marketing, and Automation v3.0.0-beta.2
5.38.0 5.37.0 5.36.1 5.36.0 5.35.1 5.35.0 5.34.3 5.34.2 5.34.1 5.34.0 5.33.1 5.33.0 5.32.0 5.31.0 5.30.0 5.29.0 5.28.1 5.28.0 5.27.0 5.26.0 5.26.1 5.25.0 5.24.0 4.43.0 4.43.1 All 542 releases
mailpoet / mailpoet.php
mailpoet.php
32 lines 619 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if(!defined('ABSPATH')) exit;
3
4 use \MailPoet\Config\Initializer;
5 /*
6 * Plugin Name: MailPoet
7 * Version: 3.0.0-beta.2
8 * Plugin URI: http://www.mailpoet.com
9 * Description: MailPoet Newsletters.
10 * Author: MailPoet
11 * Author URI: http://www.mailpoet.com
12 * Requires at least: 4.0
13 * Tested up to: 4.0
14 *
15 * Text Domain: mailpoet
16 * Domain Path: /lang/
17 *
18 * @package WordPress
19 * @author MailPoet
20 * @since 0.0.8
21 */
22
23 require 'vendor/autoload.php';
24
25 define('MAILPOET_VERSION', '3.0.0-beta.2');
26
27 $initializer = new Initializer(array(
28 'file' => __FILE__,
29 'version' => MAILPOET_VERSION
30 ));
31 $initializer->init();
32