# yaymail/4.3.3/src/License/CorePlugin.php

YayMail – WooCommerce Email Customizer, version 4.3.3. 31 lines.

- Page: https://pluginprobe.com/plugins/yaymail/4.3.3/code/src/License/CorePlugin.php
- Raw: https://pluginprobe.com/plugins/yaymail/4.3.3/raw/src/License/CorePlugin.php
- Modified: 2026-02-12T15:49:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yaymail/4.3.3/code/src/License/CorePlugin.php#L10-L20`.

```php
<?php

namespace YayMail\License;

defined( 'ABSPATH' ) || exit;

/**
 * CorePlugin
 *
 * @package CorePlugin
 */
class CorePlugin {

    public static function get( $name ) {
        $data = [
            'path'        => YAYMAIL_PLUGIN_PATH,
            'url'         => YAYMAIL_PLUGIN_URL,
            'basename'    => YAYMAIL_PLUGIN_BASENAME,
            'version'     => YAYMAIL_VERSION,
            'slug'        => 'yaymail',
            'link'        => 'https://yaycommerce.com/yaymail-woocommerce-email-customizer/',
            'download_id' => '4216',
        ];

        if ( isset( $data[ $name ] ) ) {
            return $data[ $name ];
        }
        return null;
    }
}

```
