PluginProbe ʕ •ᴥ•ʔ
Email Encoder – Protect Email Addresses and Phone Numbers / 2.1.7
Email Encoder – Protect Email Addresses and Phone Numbers v2.1.7
2.5.0 2.4.8 trunk 0.10 0.11 0.12 0.20 0.21 0.22 0.30 0.31 0.32 0.40 0.41 0.42 0.50 0.60 0.70 0.71 0.80 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.5 1.5.2 1.51 1.53 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7
email-encoder-bundle / email-encoder-bundle.php
email-encoder-bundle Last commit date
core 3 years ago languages 3 years ago email-encoder-bundle.php 3 years ago index.php 3 years ago license.txt 3 years ago readme.txt 3 years ago
email-encoder-bundle.php
60 lines
1 <?php
2 /**
3 * Plugin Name: Email Encoder - Protect Email Addresses
4 * Version: 2.1.7
5 * Plugin URI: https://wordpress.org/plugins/email-encoder-bundle/
6 * Description: Protect email addresses on your site and hide them from spambots. Easy to use & flexible.
7 * Author: Jannis Thuemmig
8 * Author URI: https://twitter.com/thuemmig
9 * License: Dual licensed under the MIT and GPL licenses
10 * Text Domain: email-encoder-bundle
11 *
12 * License: GPL2
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with TMG User Filter. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // Exit if accessed directly.
19 if ( !defined( 'ABSPATH' ) ) exit;
20
21 // Plugin name.
22 define( 'EEB_NAME', 'Email Encoder' );
23
24 // Plugin version.
25 define( 'EEB_VERSION', '2.1.7' );
26
27 // Determines if the plugin is loaded
28 define( 'EEB_SETUP', true );
29
30 // Plugin Root File.
31 define( 'EEB_PLUGIN_FILE', __FILE__ );
32
33 // Plugin base.
34 define( 'EEB_PLUGIN_BASE', plugin_basename( EEB_PLUGIN_FILE ) );
35
36 // Plugin Folder Path.
37 define( 'EEB_PLUGIN_DIR', plugin_dir_path( EEB_PLUGIN_FILE ) );
38
39 // Plugin Folder URL.
40 define( 'EEB_PLUGIN_URL', plugin_dir_url( EEB_PLUGIN_FILE ) );
41
42 // Plugin Root File.
43 define( 'EEB_TEXTDOMAIN', 'email-encoder-bundle' );
44
45 /**
46 * Load the main instance for our core functions
47 */
48 require_once EEB_PLUGIN_DIR . 'core/class-email-encoder-bundle.php';
49
50 /**
51 * The main function to load the only instance
52 * of our master class.
53 *
54 * @return object|Email_Encoder
55 */
56 function EEB() {
57 return Email_Encoder::instance();
58 }
59
60 EEB();