Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
getParentOptionsResolver example
abstract
protected
function
describeResolvedFormType
(
ResolvedFormTypeInterface
$resolvedFormType
, array
$options
=
[
]
)
: void;
abstract
protected
function
describeOption
(
OptionsResolver
$optionsResolver
, array
$options
)
: void;
protected
function
collectOptions
(
ResolvedFormTypeInterface
$type
)
: void
{
$this
->parents =
[
]
;
$this
->extensions =
[
]
;
if
(
null !==
$type
->
getParent
(
)
)
{
$optionsResolver
=
clone
$this
->
getParentOptionsResolver
(
$type
->
getParent
(
)
)
;
}
else
{
$optionsResolver
=
new
OptionsResolver
(
)
;
}
$type
->
getInnerType
(
)
->
configureOptions
(
$ownOptionsResolver
=
new
OptionsResolverWrapper
(
)
)
;
$this
->ownOptions =
array_diff
(
$ownOptionsResolver
->
getDefinedOptions
(
)
,
$optionsResolver
->
getDefinedOptions
(
)
)
;
$overriddenOptions
=
array_intersect
(
array_merge
(
$ownOptionsResolver
->
getDefinedOptions
(
)
,
$ownOptionsResolver
->
getUndefinedOptions
(
)
)
,
$optionsResolver
->
getDefinedOptions
(
)
)
;
$this
->parentOptions =
[
]
;
foreach
(
$this
->parents
as
$class
=>
$parentOptions
)
{
$this
->overriddenOptions
[
$class
]
=
array_intersect
(
$overriddenOptions
,
$parentOptions
)
;