12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * System config email field backend model
- */
- namespace Magento\Config\Model\Config\Backend\Email;
- use Magento\Framework\Exception\LocalizedException;
- /**
- * @api
- * @since 100.0.2
- */
- class Address extends \Magento\Framework\App\Config\Value
- {
- /**
- * @return $this
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function beforeSave()
- {
- $value = $this->getValue();
- if (!\Zend_Validate::is($value, \Magento\Framework\Validator\EmailAddress::class)) {
- throw new LocalizedException(
- __('The "%1" email address is incorrect. Verify the email address and try again.', $value)
- );
- }
- return $this;
- }
- }
|