In TypoScript exists the possibility to get the environment variable HTTP_COOKIE_VARS (which is deprecated):

10 = TEXT
10.data = global : HTTP_COOKIE_VARS | some_cookie

I got this from the documentation.

But on my server (PHP 5.3) this variable is empty! I suppose this is because this environment variable is deprecated. Now I am running out of options, without using an extension, user function or user condition.

Maybe you have an idea! Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Unfortunately, there is no built-in functionality for the $_COOKIE variable.

You can however write a hook which implements the tslib_content_getDataHook interface and register it via

$TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_content.php']['getData'][] = 'path/to/your/class.user_cookiehook.php';
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.