1234567891011121314151617181920 |
- <?php
- namespace Smartwave\Dailydeals\Plugin;
- class FinalPricePlugin
- {
- public function beforeSetTemplate(\Magento\Catalog\Pricing\Render\FinalPriceBox $subject, $template)
- {
- $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
- $enable=$objectManager->create('Smartwave\Dailydeals\Helper\Data')->chkEnableDailydeals();
- if ($enable) {
- if ($template == 'Magento_Catalog::product/price/final_price.phtml') {
- return ['Smartwave_Dailydeals::product/price/final_price.phtml'];
- } else {
- return [$template];
- }
- } else {
- return[$template];
- }
- }
- }
|