Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
functional
tests
app
Magento
Signifyd
Test
Fixture
SignifydAddress
Firstname.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Signifyd\Test\Fixture\SignifydAddress
;
7
8
use Magento\Mtf\Fixture\DataSource;
9
13
class
Firstname
extends
DataSource
14
{
18
public
function
__construct
(
$data
=
''
)
19
{
20
$this->data =
$data
;
21
}
22
29
public
function
getData
($key =
null
)
30
{
31
$this->data = str_replace(
'%signifyd_isolation%'
, $this->generateIsolation(), $this->data);
32
33
return
parent::getData($key);
34
}
35
42
private
function
generateIsolation($length = 10)
43
{
44
return
substr(str_shuffle(str_repeat(
"abcdefghijklmnopqrstuvwxyz"
, $length)), 0, $length);
45
}
46
}
Magento\Signifyd\Test\Fixture\SignifydAddress\Firstname\__construct
__construct($data='')
Definition:
Firstname.php:18
Magento\Signifyd\Test\Fixture\SignifydAddress\Firstname
Definition:
Firstname.php:13
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Signifyd\Test\Fixture\SignifydAddress
Definition:
Firstname.php:6
Magento\Signifyd\Test\Fixture\SignifydAddress\Firstname\getData
getData($key=null)
Definition:
Firstname.php:29