-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from magmodules/release/1.0.3
Release/1.0.3
- Loading branch information
Showing
5 changed files
with
510 additions
and
493 deletions.
There are no files selected for viewing
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,21 @@ | ||
<?php | ||
/** | ||
* Copyright © Magmodules.eu. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magmodules\HyvaReviewReminder\ViewModel\Review; | ||
|
||
use Magmodules\ReviewReminder\ViewModel\Review\Form as ReviewForm; | ||
|
||
|
||
class Form extends ReviewForm | ||
{ | ||
public function getSteps() | ||
{ | ||
return $this->isAddShopreview() | ||
? [__('Review'), __('Shopreview'), __('Submitted')] | ||
: [__('Review'), __('Submitted')]; | ||
} | ||
} |
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,5 @@ | ||
<?xml version="1.0"?> | ||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> | ||
<preference for="Magmodules\ReviewReminder\ViewModel\Review\Form" | ||
type="Magmodules\HyvaReviewReminder\ViewModel\Review\Form" /> | ||
</config> |
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,4 @@ | ||
"[review:reminder:nickname:text]", "A nickname is required for every review and is publicly visible next to each review you write. For privacy reasons, we do recommend using a nickname instead of your full name." | ||
"[review:reminder:write:review:text]", "With your review, you help us, as well as other customers, gain even more relevant information about the product. You can always check and edit the written review in your account." | ||
"[review:reminder:review:text]", "By posting reviews you give permission to use your personal data in accordance with the privacy statement. In your review we do not show any personal information such as your email address or name. You may receive emails regarding your review." | ||
"[review:reminder:success:text]%1", "Thank you again for your recent purchase with number <b>#%1</b>. With your review, you help us, as well as other customers, gain even more relevant information about the product. You can always check and edit the written review in your account. Have a good day!" |
Oops, something went wrong.