Documentation TYPO3 par Ameos |
Definition at line 201 of file class.tslib_fe.php.
|
||||||||||||||||||||||||||||||||||||
|
Class constructor Takes a number of GET/POST input variable as arguments and stores them internally. The processing of these variables goes on later in this class. Also sets internal clientInfo array (browser information) and a unique string (->uniqueString) for this script instance; A md5 hash of the microtime()
Definition at line 369 of file class.tslib_fe.php. References $cHash, $id, $jumpurl, $MP, $no_cache, $RDCT, $type, $TYPO3_CONF_VARS, t3lib_div::callUserFunction(), t3lib_div::clientInfo(), and t3lib_div::makeInstance(). |
|
||||||||||||||||||||||||||||||||||||
|
Class constructor Takes a number of GET/POST input variable as arguments and stores them internally. The processing of these variables goes on later in this class. Also sets internal clientInfo array (browser information) and a unique string (->uniqueString) for this script instance; A md5 hash of the microtime()
Definition at line 369 of file class.tslib_fe.php. References $cHash, $id, $jumpurl, $MP, $no_cache, $RDCT, $type, $TYPO3_CONF_VARS, t3lib_div::callUserFunction(), t3lib_div::clientInfo(), and t3lib_div::makeInstance(). |
|
|
Prefixing the input URL with ->baseUrl If ->baseUrl is set and the input url is not absolute in some way. Designed as a wrapper functions for use with all frontend links that are processed by JavaScript (for "realurl" compatibility!). So each time a URL goes into window.open, document.location or otherwise, wrap it with this function!
Definition at line 3241 of file class.tslib_fe.php. |
|
|
Prefixing the input URL with ->baseUrl If ->baseUrl is set and the input url is not absolute in some way. Designed as a wrapper functions for use with all frontend links that are processed by JavaScript (for "realurl" compatibility!). So each time a URL goes into window.open, document.location or otherwise, wrap it with this function!
Definition at line 3241 of file class.tslib_fe.php. |
|
|
Returns a link to the login screen with redirect to the front-end
Definition at line 2964 of file class.tslib_fe.php. References t3lib_div::cmpIP(), and t3lib_div::getIndpEnv(). |
|
|
Returns a link to the login screen with redirect to the front-end
Definition at line 2964 of file class.tslib_fe.php. References t3lib_div::cmpIP(), and t3lib_div::getIndpEnv(). |
|
|
Splits the input query-parameters into an array with certain parameters filtered out. Used to create the cHash value
Definition at line 1422 of file class.tslib_fe.php. References t3lib_div::cHashParams(). |
|
|
Splits the input query-parameters into an array with certain parameters filtered out. Used to create the cHash value
Definition at line 1422 of file class.tslib_fe.php. References t3lib_div::cHashParams(). |
|
|
Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or virtual HTML-documents (using Apache mod_rewrite) Three options: 1) Apache mod_rewrite: Here a .htaccess file maps all .html-files to index.php and then we extract the id and type from the name of that HTML-file. (AKA "simulateStaticDocuments") 2) Use PATH_INFO (also Apache) to extract id and type from that var. Does not require any special modules compiled with apache. (less typical) 3) Using hook which enables features like those provided from "realurl" extension (AKA "Speaking URLs") Support for RewriteRule to generate (simulateStaticDocuments) With the mod_rewrite compiled into apache, put these lines into a .htaccess in this directory: RewriteEngine On RewriteRule ^[^/]*\.html$ index.php The url must end with '.html' and the format must comply with either of these: 1: '[title].[id].[type].html' - title is just for easy recognition in the logfile!; no practical use of the title for TYPO3. 2: '[id].[type].html' - above, but title is omitted; no practical use of the title for TYPO3. 3: '[id].html' - only id, type is set to the default, zero! NOTE: In all case 'id' may be the uid-number OR the page alias (if any)
Definition at line 605 of file class.tslib_fe.php. References t3lib_div::callUserFunction(), checkAlternativeIdMethods(), t3lib_div::getIndpEnv(), t3lib_div::split_fileref(), and t3lib_div::trimExplode(). |
|
|
Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or virtual HTML-documents (using Apache mod_rewrite) Three options: 1) Apache mod_rewrite: Here a .htaccess file maps all .html-files to index.php and then we extract the id and type from the name of that HTML-file. (AKA "simulateStaticDocuments") 2) Use PATH_INFO (also Apache) to extract id and type from that var. Does not require any special modules compiled with apache. (less typical) 3) Using hook which enables features like those provided from "realurl" extension (AKA "Speaking URLs") Support for RewriteRule to generate (simulateStaticDocuments) With the mod_rewrite compiled into apache, put these lines into a .htaccess in this directory: RewriteEngine On RewriteRule ^[^/]*\.html$ index.php The url must end with '.html' and the format must comply with either of these: 1: '[title].[id].[type].html' - title is just for easy recognition in the logfile!; no practical use of the title for TYPO3. 2: '[id].[type].html' - above, but title is omitted; no practical use of the title for TYPO3. 3: '[id].html' - only id, type is set to the default, zero! NOTE: In all case 'id' may be the uid-number OR the page alias (if any)
Definition at line 605 of file class.tslib_fe.php. References t3lib_div::callUserFunction(), t3lib_div::getIndpEnv(), t3lib_div::split_fileref(), and t3lib_div::trimExplode(). Referenced by checkAlternativeIdMethods(). |
|
|
Fetches the integer page id for a page alias. Looks if ->id is not an integer and if so it will search for a page alias and if found the page uid of that page is stored in $this->id
Definition at line 1287 of file class.tslib_fe.php. References t3lib_div::testInt(). |
|
|
Fetches the integer page id for a page alias. Looks if ->id is not an integer and if so it will search for a page alias and if found the page uid of that page is stored in $this->id
Definition at line 1287 of file class.tslib_fe.php. References t3lib_div::testInt(). Referenced by fetch_the_id(). |
|
|
Checks if any email-submissions or submission via the fe_tce
Definition at line 1869 of file class.tslib_fe.php. References t3lib_div::getIndpEnv(). |
|
|
Checks if any email-submissions or submission via the fe_tce
Definition at line 1869 of file class.tslib_fe.php. References t3lib_div::getIndpEnv(). |
|
||||||||||||
|
Checks page record for enableFields Returns true if enableFields does not disable the page record. Takes notice of the ->showHiddenPage flag and uses SIM_EXEC_TIME for start/endtime evaluation
Definition at line 1044 of file class.tslib_fe.php. |
|