PluginProbe
YayMail – WooCommerce Email Customizer / 3.3
YayMail – WooCommerce Email Customizer v3.3
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / includes / License / CorePlugin.php

CorePlugin.php in YayMail – WooCommerce Email Customizer 3.3, at includes/License/CorePlugin.php

26 lines 540 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YayMail\License;
4
5 defined( 'ABSPATH' ) || exit;
6
7 class CorePlugin {
8
9 public static function get( $name ) {
10 $data = array(
11 'path' => YAYMAIL_PLUGIN_PATH,
12 'url' => YAYMAIL_PLUGIN_URL,
13 'basename' => YAYMAIL_PLUGIN_BASENAME,
14 'version' => YAYMAIL_VERSION,
15 'slug' => 'yaymail',
16 'link' => 'https://yaycommerce.com/yaymail-woocommerce-email-customizer/',
17 'download_id' => '4216',
18 );
19
20 if ( isset( $data[ $name ] ) ) {
21 return $data[ $name ];
22 }
23 return null;
24 }
25 }
26