mailpoet
Last commit date
assets
9 years ago
lang
9 years ago
lib
9 years ago
vendor
9 years ago
views
9 years ago
index.php
9 years ago
license.txt
9 years ago
mailpoet.php
9 years ago
readme.txt
9 years ago
uninstall.php
9 years ago
mailpoet.php
32 lines
| 1 | <?php |
| 2 | if(!defined('ABSPATH')) exit; |
| 3 | |
| 4 | use \MailPoet\Config\Initializer; |
| 5 | /* |
| 6 | * Plugin Name: MailPoet |
| 7 | * Version: 3.0.0-beta.4 |
| 8 | * Plugin URI: http://www.mailpoet.com |
| 9 | * Description: Create and send beautiful email newsletters, autoresponders, and post notifications without leaving WordPress. This is a beta version of our brand new plugin! |
| 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.4'); |
| 26 | |
| 27 | $initializer = new Initializer(array( |
| 28 | 'file' => __FILE__, |
| 29 | 'version' => MAILPOET_VERSION |
| 30 | )); |
| 31 | $initializer->init(); |
| 32 |