Re: [TYPO3-english] List of registers

2010-12-18 Thread François Suter
Hi Victor, For anyone, who will search for same topic, I've made a research by simple search of '$GLOBALS['TSFE']-register' ($TSFE-register gave 0 results) in content of all PHP files in TYPO3 4.4. Here is a list with some my explanations: Thanks a lot for your work. I have opened an issue in

Re: [TYPO3-english] List of registers

2010-12-17 Thread Victor Livakovsky
Hi, François, Unfortunately only a few are documented. This a well-known shortcoming of the current manuals. We would be glad if anyone helped filling this gap actually. Sorry for not being more helpful. Okay, I see now. Anyway, thank you for an answer :)

Re: [TYPO3-english] List of registers

2010-12-17 Thread Victor Livakovsky
For anyone, who will search for same topic, I've made a research by simple search of '$GLOBALS['TSFE']-register' ($TSFE-register gave 0 results) in content of all PHP files in TYPO3 4.4. Here is a list with some my explanations: class.tx_cssstyled_content_pi1.php function

[TYPO3-english] List of registers

2010-12-16 Thread Victor Livakovsky
Hi, list. Can someone tell me where can I find list of all registers, provided by TYPO3 core? I'm talking about such as register:count_MENUOBJ and register:count_HMENU_MENUOBJ Thank you in advance. ___ TYPO3-english mailing list

Re: [TYPO3-english] List of registers

2010-12-16 Thread François Suter
Hi Victor, Can someone tell me where can I find list of all registers, provided by TYPO3 core? I'm talking about such as register:count_MENUOBJ and register:count_HMENU_MENUOBJ Unfortunately only a few are documented. This a well-known shortcoming of the current manuals. We would be glad if

Re: [TYPO3-english] List of registers

2010-12-16 Thread Rik Willems
Hi Victor, Can someone tell me where can I find list of all registers, provided by TYPO3 core? I'm talking about such as register:count_MENUOBJ and register:count_HMENU_MENUOBJ Unfortunately only a few are documented. This a well-known shortcoming of the current manuals. We would be glad if

Re: [TYPO3-english] List of registers

2010-12-16 Thread François Suter
Hi, I suppose they are registered through a common piece of code by calling a function. You could do a grep on that and see what pops up? Indeed a typical register definition looks like this: $GLOBALS['TSFE']-register['count_menuItems'] = count($this-menuArr); There may be places in the