[TYPO3-ect] Kickstarter MVC Bug: getConfiguration()
Elmar Hinz
elmar.DOT.hinz at team.MINUS.red.DOT.net
Thu Jun 28 15:06:18 CEST 2007
Am Thu, 28 Jun 2007 13:34:39 +0200 schrieb Christian Welzel:
> Stefan Geith wrote:
>
>> Is this is Bug of kickstarter_mvc or does the kickstarter
>> simply rely on an older Verion of lib/div ?
>
> I'm not sure about this, but as far as can remember i copied this
> code from one of Elmars Exts.
>
>> Ich think
>> getConfiguration()
>> should be changed to
>> configurations->get()
>> Right ?
>
> Yeah. I will fix this in svn.
>
Hi,
I introduced the "Concept of the Central Triad" with the latest TER
versions.
http://typo3.org/extensions/repository/view/lib/0.0.22/info/doc%252Flib-div-in-a-nutshell.txt/
PHP 4:
$this->controller->parameters->get($key);
$this->controller->configurations->get($key);
The functions getConfiguration() and getParameter() have been removed.
I saw a need for more transparency and gave up some veiling comfort for
this. Maybe the old comfortable functions can be reactivated when a broader
community won a deeper insight into the relations of the objects of
lib/div.
Warning: The current SVN version is PHP5 only. I still need an idea how to
trigger and handle the switch between PHP4 and PHP5. See my recent posting
concernig PHP5.
PHP 5:
also:
$this->controller->parameters[$key];
$this->controller->configurations[$key];
Regards
Elmar
More information about the TYPO3-team-extension-coordination
mailing list