Engine
2 days ago
Integrations
2 days ago
Validator
11 months ago
class-bootstrap.php
3 months ago
class-container.php
9 months ago
class-email-css-inliner.php
9 months ago
class-email-editor-container.php
5 months ago
class-package.php
11 months ago
exceptions.php
11 months ago
index.php
11 months ago
class-package.php
18 lines
| 1 | <?php |
| 2 | declare( strict_types = 1 ); |
| 3 | namespace Automattic\WooCommerce\EmailEditor; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | defined( 'ABSPATH' ) || exit; |
| 6 | class Package { |
| 7 | const VERSION = '0.1.0'; |
| 8 | public static function init() { |
| 9 | Email_Editor_Container::init(); |
| 10 | } |
| 11 | public static function get_version() { |
| 12 | return self::VERSION; |
| 13 | } |
| 14 | public static function get_path() { |
| 15 | return dirname( __DIR__ ); |
| 16 | } |
| 17 | } |
| 18 |