| 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 __( 'The plugin will recommend some addons or compatible plugins.', 'tier-pricing-table' ); |
| 13 |
} |
| 14 |
|
| 15 |
public function getSlug(): string { |
| 16 |
return 'plugins-recommendations'; |
| 17 |
} |
| 18 |
|
| 19 |
public function run() { |
| 20 |
new ConditionalLogicForProductAddons(); |
| 21 |
new CancellationSurveysPlugin(); |
| 22 |
new BulkPriceEditorPlugin(); |
| 23 |
} |
| 24 |
} |
| 25 |
|