[Typo3-dev] Caching
Ernesto Baschny [cron IT]
ernst at cron-it.de
Fri Sep 9 10:41:41 CEST 2005
Waggershauser, Thomas schrieb am 09.09.2005 09:24:
> Hello!
>
> I made an extension as USER_INT object and want to change it to USER now, because caching is very important. But I don't know how!
> I've tried to comment out "$this->pi_USER_INT_obj=1;" and changed it to 0, but still the object-browserr says USER_INT :(
> I've tried to set it to USER via Typoscript, but that doesn't work either...
>
> I think my question is clear: where is this USER/USER_INT set?
You probably have made a frontend plugin, which is added in
ext_localconf.php with t3lib_extMgm::addPItoST43. The last argument of
this call ($cached) tells the extMgm if you want the plugin to be an
USER or USER_INT object:
USER ($cached=1):
t3lib_extMgm::addPItoST43($_EXTKEY,'pi1/class.tx_blabla_pi1.php','_pi1','',1);
USER_INT ($cached=0):
t3lib_extMgm::addPItoST43($_EXTKEY,'pi1/class.tx_blabla_pi1.php','_pi1','',0);
Cheers,
Ernesto
More information about the TYPO3-dev
mailing list