Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
setValidateMx example
if
(
array_key_exists
(
'hostname',
$options
)
)
{
if
(
array_key_exists
(
'allow',
$options
)
)
{
$this
->
setHostnameValidator
(
$options
[
'hostname'
]
,
$options
[
'allow'
]
)
;
}
else
{
$this
->
setHostnameValidator
(
$options
[
'hostname'
]
)
;
}
}
elseif
(
$this
->_options
[
'hostname'
]
== null
)
{
$this
->
setHostnameValidator
(
)
;
}
if
(
array_key_exists
(
'mx',
$options
)
)
{
$this
->
setValidateMx
(
$options
[
'mx'
]
)
;
}
if
(
array_key_exists
(
'deep',
$options
)
)
{
$this
->
setDeepMxCheck
(
$options
[
'deep'
]
)
;
}
if
(
array_key_exists
(
'domain',
$options
)
)
{
$this
->
setDomainCheck
(
$options
[
'domain'
]
)
;
}
return
$this
;
}