⚲
Project
General
Profile
Sign in
Home
Projects
Help
Search
:
TYPO3 Core
All Projects
TYPO3 Core
Overview
Activity
Roadmap
Issues
Repository
Download (387 Bytes)
Bug #20417
» driverOptions.php
Administrator Admin, 2009-05-15 16:21
if
(
isset
(
$cfgArray
[
'config'
][
'driverOptions'
]))
{
foreach
(
$cfgArray
[
'config'
][
'driverOptions'
]
as
$optionName
=>
$optionValue
)
{
$optionSetterName
=
'set'
.
ucfirst
(
$optionName
);
if
(
method_exists
(
$optionSetterName
))
{
$this
->
handlerInstance
[
$handlerKey
]
->
$optionSetterName
(
$optionValue
);
}
else
{
$this
->
handlerInstance
[
$handlerKey
]
->
$optionName
=
$optionValue
;
}
}
}
« Previous
1
2
3
Next »
(1-1/3)
Loading...