PluginProbe
Tiered Pricing Table for WooCommerce / 7.1.5
Tiered Pricing Table for WooCommerce v7.1.5
8.0.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 All 91 releases
tier-pricing-table / src / Addons / PluginsRecommendations / PluginsRecommendationsAddon.php

PluginsRecommendationsAddon.php in Tiered Pricing Table for WooCommerce 7.1.5, at src/Addons/PluginsRecommendations/PluginsRecommendationsAddon.php

29 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php namespace TierPricingTable\Addons\PluginsRecommendations;
2
3 use TierPricingTable\Addons\AbstractAddon;
4
5 class PluginsRecommendationsAddon extends AbstractAddon {
6
7 public function getName(): string {
8 return __( 'Plugins recommendations', 'tier-pricing-table' );
9 }
10
11 public function getDescription(): string {
12 return __( 'Show recommendations for related plugins and addons.', 'tier-pricing-table' );
13 }
14
15 public function getIcon(): string {
16 return '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h1.5v3.8c0 1.1.9 2 2 2h4v1.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V20h4c1.1 0 2-.9 2-2v-4h1.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"/></svg>';
17 }
18
19 public function getSlug(): string {
20 return 'plugins-recommendations';
21 }
22
23 public function run() {
24 new ConditionalLogicForProductAddons();
25 new CancellationSurveysPlugin();
26 new BulkPriceEditorPlugin();
27 }
28 }
29