PluginProbe
Tiered Pricing Table for WooCommerce / 2.2.2
Tiered Pricing Table for WooCommerce v2.2.2
7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 All 90 releases
← All changes | src/Admin/Admin.php +119 -50 trunk2.2.2 View file →
@@ -1,57 +1,126 @@
1 -<?php namespace TierPricingTable\Admin;
1 +<?php
2 2
3 -use TierPricingTable\Admin\ProductPage\AdvanceOptionsForVariableProduct;
4 -use TierPricingTable\Admin\ProductPage\Product;
5 -use TierPricingTable\Admin\ProductPage\TieredPricingTab;
6 -use TierPricingTable\Admin\ProductPage\RoleCustomerPricingTab;
7 -use TierPricingTable\Admin\WelcomePage\WelcomePage;
8 -use TierPricingTable\Core\ServiceContainerTrait;
9 -use TierPricingTable\TierPricingTablePlugin;
10 -use TierPricingTable\Admin\Tips\TipsManager;
3 +namespace TierPricingTable\Admin;
11 4
5 +use TierPricingTable\Freemius ;
6 +use TierPricingTable\Settings\Settings ;
7 +use TierPricingTable\TierPricingTablePlugin ;
8 +use Premmerce\SDK\V2\FileManager\FileManager ;
9 +use TierPricingTable\Admin\ProductManagers\SimpleProductManager ;
10 +use TierPricingTable\Admin\ProductManagers\VariationProductManager ;
11 +use TierPricingTable\Admin\Export\Woocommerce as WooCommerceExport ;
12 +use TierPricingTable\Admin\Import\Woocommerce as WooCommerceImport ;
12 13 /**
13 14 * Class Admin
14 15 *
15 16 * @package TierPricingTable\Admin
16 17 */
17 -class Admin {
18 -
19 - use ServiceContainerTrait;
20 -
21 - /**
22 - * Array of Managers
23 - *
24 - * @var array
25 - */
26 - private $managers;
27 -
28 - /**
29 - * Admin constructor.
30 - *
31 - * Register menu items and handlers
32 - *
33 - */
34 - public function __construct() {
35 - new Product();
36 - new TieredPricingTab();
37 - new RoleCustomerPricingTab();
38 - new AdvanceOptionsForVariableProduct();
39 - new TipsManager();
40 -
41 - new WelcomePage();
42 -
43 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueueAssets' ], 10, 2 );
44 - }
45 -
46 - /**
47 - * Register assets on product create/update page
48 - */
49 - public function enqueueAssets() {
50 - wp_enqueue_script( 'tiered-pricing-table-admin-js',
51 - $this->getContainer()->getFileManager()->locateJSAsset( 'admin/main' ), [ 'jquery' ],
52 - TierPricingTablePlugin::VERSION );
53 - wp_enqueue_style( 'tiered-pricing-table-admin-css',
54 - $this->getContainer()->getFileManager()->locateCSSAsset( 'admin/style.css' ), array(),
55 - TierPricingTablePlugin::VERSION );
56 - }
57 -}
18 +class Admin
19 +{
20 + /**
21 + * @var FileManager
22 + */
23 + private $fileManager ;
24 + /**
25 + * @var Settings
26 + */
27 + private $settings ;
28 + /**
29 + * @var array
30 + */
31 + private $managers ;
32 + /**
33 + * @var Freemius
34 + */
35 + private $licence ;
36 + /**
37 + * Admin constructor.
38 + *
39 + * Register menu items and handlers
40 + *
41 + * @param FileManager $fileManager
42 + * @param Freemius $licence
43 + * @param Settings $settings
44 + */
45 + public function __construct( FileManager $fileManager, Freemius $licence, Settings $settings )
46 + {
47 + $this->fileManager = $fileManager;
48 + $this->settings = $settings;
49 + $this->licence = $licence;
50 + $this->initManagers();
51 + add_action( 'admin_enqueue_scripts', [ $this, 'enqueueAssets' ] );
52 + if ( get_transient( 'tier_pricing_table_activated' ) ) {
53 + add_action( 'admin_notices', [ $this, 'showActivationMessage' ] );
54 + }
55 +
56 + if ( $this->licence->isFree() ) {
57 +
58 + if ( tpt_fs()->is_anonymous() || !tpt_fs()->is_installed_on_site() ) {
59 + $template = 'opt-in-alert.php';
60 + } else {
61 + $template = 'upgrade-alert.php';
62 + }
63 +
64 + add_action( 'woocommerce_settings_' . Settings::SETTINGS_PAGE, function () use( $template ) {
65 + $this->fileManager->includeTemplate( 'admin/alerts/' . $template, [
66 + 'upgradeUrl' => $this->licence->getUpgradeLink(),
67 + 'contactUsUrl' => $this->licence->getContactUsPageUrl(),
68 + ] );
69 + $this->fileManager->includeTemplate( 'admin/only-in-premium-script.php' );
70 + } );
71 + }
72 +
73 + }
74 +
75 + /**
76 + * Init Managers
77 + */
78 + public function initManagers()
79 + {
80 + $this->managers = [
81 + SimpleProductManager::class => new SimpleProductManager( $this->fileManager, $this->settings, $this->licence ),
82 + VariationProductManager::class => new VariationProductManager( $this->fileManager, $this->settings, $this->licence ),
83 + WooCommerceExport::class => new WooCommerceExport(),
84 + WooCommerceImport::class => new WooCommerceImport(),
85 + ];
86 + }
87 +
88 + /**
89 + * Show message about activation plugin and advise next step
90 + */
91 + public function showActivationMessage()
92 + {
93 + $link = $this->settings->getLink();
94 + $this->fileManager->includeTemplate( 'admin/alerts/activation-alert.php', [
95 + 'link' => $link,
96 + ] );
97 + delete_transient( 'tiered_pricing_table_activated' );
98 + }
99 +
100 + /**
101 + * Register assets on product create/update page
102 + *
103 + * @param $page
104 + */
105 + public function enqueueAssets( $page )
106 + {
107 + global $post, $page ;
108 +
109 + if ( isset( $_GET['tab'] ) && $_GET['tab'] == Settings::SETTINGS_PAGE || ($page == 'post.php' || ($page = 'post_new.php')) && $post && $post->post_type == 'product' ) {
110 + wp_enqueue_script(
111 + 'tier-pricing-table-admin-js',
112 + $this->fileManager->locateAsset( 'admin/main.js' ),
113 + 'jquery',
114 + TierPricingTablePlugin::VERSION
115 + );
116 + wp_enqueue_style(
117 + 'tier-pricing-table-admin-css',
118 + $this->fileManager->locateAsset( 'admin/style.css' ),
119 + null,
120 + TierPricingTablePlugin::VERSION
121 + );
122 + }
123 +
124 + }
125 +
126 +}