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
|
<?php ! defined( 'ABSPATH' ) && exit();
/* * Plugin Name: TotalPoll – Pro * Plugin URI: https://totalsuite.net/products/totalpoll/ * Description: Yet another powerful poll plugin for WordPress. * Version: 4.1.1 * Author: TotalSuite * Author URI: https://totalsuite.net/ * Text Domain: totalpoll * Domain Path: languages * Requires at least: 4.6 * Requires PHP: 5.5 * Tested up to: 5.3 * * @package TotalPoll * @category Core * @author TotalSuite * @version 4.1.1 */
// Root plugin file name define( 'TOTALPOLL_ROOT', __FILE__ );
// TotalPoll environment $environment = require dirname( __FILE__ ) . '/env.php';
// Include plugin setup require_once dirname( __FILE__ ) . '/setup.php';
// Setup new TotalPollSetup( $environment );
// Oh yeah, we're up and running!
|