Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
setExclude example
if
(
!
array_key_exists
(
'field',
$options
)
)
{
throw
new
Zend_Validate_Exception
(
'Field option missing!'
)
;
}
if
(
array_key_exists
(
'adapter',
$options
)
)
{
$this
->
setAdapter
(
$options
[
'adapter'
]
)
;
}
if
(
array_key_exists
(
'exclude',
$options
)
)
{
$this
->
setExclude
(
$options
[
'exclude'
]
)
;
}
$this
->
setField
(
$options
[
'field'
]
)
;
if
(
array_key_exists
(
'table',
$options
)
)
{
$this
->
setTable
(
$options
[
'table'
]
)
;
}
if
(
array_key_exists
(
'schema',
$options
)
)
{
$this
->
setSchema
(
$options
[
'schema'
]
)
;
}
}