Skip to content

Commit 46591be

Browse files
committed
Fixed php7.3 compatibility
Updated docs
1 parent 9f749dd commit 46591be

6 files changed

+29
-4
lines changed

Plugin/AddAttributesValidation.php

+9-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@
1010

1111
class AddAttributesValidation
1212
{
13-
private AddressValidationInterface $addressValidation;
14-
private ConfigInterface $config;
13+
/**
14+
* @var AddressValidationInterface
15+
*/
16+
private $addressValidation;
17+
18+
/**
19+
* @var ConfigInterface
20+
*/
21+
private $config;
1522

1623
public function __construct(
1724
AddressValidationInterface $addressValidation,

README.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,20 @@ The `Hryvinskyi_QuoteAddressValidator` module provides validation for quote addr
2424
1. Navigate to `Stores > Configuration > Security > Quote Address Validator.`
2525
2. Configure the following fields:
2626
- **Enable:** Set to `Yes` to enable the module.
27+
- **Validation Type:** Select the type of validation to apply to the address fields.
28+
- **`Validate by Regex`** - Validate the address fields using a regex pattern.
29+
- **`Validate by stopwords`** - Validate the address fields using a list of stopwords.
30+
- **`Validate by stopwords and regex`** - Validate the address fields using a list of stopwords and a regex pattern.
2731
- **Enable Firstname Validation** Set to `Yes` to enable validation for the firstname field.
32+
- **Firstname Stopwords** Enter a list of stopwords to validate the firstname field.
2833
- **Firstname Regex** Enter a regex pattern to validate the firstname field.
2934
- **Firstname Error Message** Enter an error message to display when the firstname field does not match the pattern.
3035
- **Enable Lastname Validation** Set to `Yes` to enable validation for the lastname field.
36+
- **Lastname Stopwords:** Enter a list of stopwords to validate the lastname field.
3137
- **Lastname Regex:** Enter a regex pattern to validate the lastname field.
3238
- **Lastname Error Message:** Enter an error message to display when the lastname field does not match the pattern.
3339
- **Enable Street Validation** Set to `Yes` to enable validation for the street field.
40+
- **Street Stopwords:** Enter a list of stopwords to validate the street field.
3441
- **Street Regex:** Enter a regex pattern to validate the street field.
3542
- **Street Error Message:** Enter an error message to display when the street field does not match the pattern.
3643

@@ -45,6 +52,12 @@ php bin/magento hryvinskyi:quote-address-validator:check-existing-addresses
4552
This command will validate all existing quote addresses and display any errors that are found.
4653
This is useful for detecting country-specific errors in addresses and names and changing Regex patterns for validation.
4754

55+
<details>
56+
<summary>Console Responce Example. Click to expand</summary>
57+
58+
![console_response.png](./docs/images/console_response.png)
59+
</details>
60+
4861
## Example Regex Patterns
4962

5063
- Firstname Regex: `/^([\p{L}' ]{3,50})$/u`
@@ -74,6 +87,11 @@ This is useful for detecting country-specific errors in addresses and names and
7487
7588
Preference for `\Magento\Quote\Model\BillingAddressManagement` added only for correct error message display. (added `LocalizedException` catch to `assign` method)
7689
77-
## Demo
90+
## Demo Backend
91+
92+
![Admin](./docs/images/configuration_settings_stores_magento_admin.gif)
93+
94+
95+
## Demo Frontend
7896
79-
![Admin](./docs/images/configuration_settings_stores_magento_admin.png)
97+
![Admin](./docs/images/checkout_testing.gif)

docs/images/checkout_testing.gif

3.47 MB
Loading
Loading
Binary file not shown.

docs/images/console_response.png

284 KB
Loading

0 commit comments

Comments
 (0)