-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ce29d2
commit eda7b99
Showing
22 changed files
with
174 additions
and
651 deletions.
There are no files selected for viewing
55 changes: 0 additions & 55 deletions
55
Block/ElasticsuiteSwatches/Navigation/Renderer/Swatches/RenderLayered.php
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
namespace Synerise\Integration\Model\Config\Source\Products; | ||
|
||
use Magento\Framework\Data\OptionSourceInterface; | ||
|
||
class Price implements OptionSourceInterface | ||
{ | ||
public const XML_PATH_PRODUCT_PRICE = 'synerise/product/price'; | ||
|
||
public const OPTIONS = [ | ||
[ | ||
'value' => 'regular_price', | ||
'label' => 'Regular Price' | ||
], | ||
[ | ||
'value' => 'final_price', | ||
'label' => 'Final Price' | ||
] | ||
]; | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function toOptionArray(): array | ||
{ | ||
return self::OPTIONS; | ||
} | ||
} |
Oops, something went wrong.