PluginProbe
YayMail – WooCommerce Email Customizer / 4.3.2
YayMail – WooCommerce Email Customizer v4.3.2
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 / src / License / CorePlugin.php

CorePlugin.php in YayMail – WooCommerce Email Customizer 4.3.2, at src/License/CorePlugin.php

31 lines 691 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 /**
8 * CorePlugin
9 *
10 * @package CorePlugin
11 */
12 class CorePlugin {
13
14 public static function get( $name ) {
15 $data = [
16 'path' => YAYMAIL_PLUGIN_PATH,
17 'url' => YAYMAIL_PLUGIN_URL,
18 'basename' => YAYMAIL_PLUGIN_BASENAME,
19 'version' => YAYMAIL_VERSION,
20 'slug' => 'yaymail',
21 'link' => 'https://yaycommerce.com/yaymail-woocommerce-email-customizer/',
22 'download_id' => '4216',
23 ];
24
25 if ( isset( $data[ $name ] ) ) {
26 return $data[ $name ];
27 }
28 return null;
29 }
30 }
31