Revision: 54187
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at December 14, 2011 07:32 by tbrodard
Initial Code
$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array();
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
'init' => array(
'enableCHashCache' => 1
// disable enableUrlDecodeCache for multiple domains
// as no root pid is caught and the system check to
// see if correct page path is grabbed
, 'enableUrlDecodeCache' => 0
, 'enableUrlEncodeCache' => 0
, 'appendMissingSlash' => 'ifNotFile'
, 'respectSimulateStaticURLs' => 0
, 'postVarSet_failureMode' => 'redirect_goodUpperDir'
),
'redirects' => array(),
'preVars' => array(
// Langue
array(
'GETvar' => 'L',
'valueMap' => array(
'it' => '2',
'de' => '0',
'fr' => '1',
),
'valueDefault' => 'de',
),
// No cache
array(
'GETvar' => 'no_cache',
'valueMap' => array(
'no_cache' => 1,
),
'noMatch' => 'bypass',
),
),
'pagePath' => array(
'type' => 'user'
, 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main'
, 'spaceCharacter' => '-'
, 'languageGetVar' => 'L'
, 'rootpage_id' => 1
, 'disablePathCache' => 0
, 'expireDays' => 7
, 'segTitleFieldList' => 'tx_realurl_pathsegment,alias,nav_title,title'
, 'excludePageIds' => null
),
'fixedPostVars' => array(),
'postVarSets' => array(
'_DEFAULT' => array(
// news archive parameters
'archive' => array(
array(
'GETvar' => 'tx_ttnews[year]',
),
array(
'GETvar' => 'tx_ttnews[month]',
'valueMap' => array(
'january' => '01',
'february' => '02',
'march' => '03',
'april' => '04',
'may' => '05',
'june' => '06',
'july' => '07',
'august' => '08',
'september' => '09',
'october' => '10',
'november' => '11',
'december' => '12',
)
),
),
// news pagebrowser
'browse' => array(
array(
'GETvar' => 'tx_ttnews[pointer]',
),
),
// news categories
'select_category' => array(
array(
'GETvar' => 'tx_ttnews[cat]',
),
),
// news articles and searchwords
'article' => array(
array(
'GETvar' => 'tx_ttnews[tt_news]',
'lookUpTable' => array(
'table' => 'tt_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'languageGetVar' => 'L',
'languageExceptionUids' => '',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l18n_parent',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
),
),
array(
'GETvar' => 'tx_ttnews[swords]',
),
),
),
), // END postVarSets
// configure filenames for different pagetypes
'fileName' => array(
// Put ".html" at the end of the URL
'defaultToHTMLsuffixOnPrev' => 0,
'index' => array(
'rss.xml' => array(
'keyValues' => array(
'type' => 100,
),
),
'rss091.xml' => array(
'keyValues' => array(
'type' => 101,
),
),
'rdf.xml' => array(
'keyValues' => array(
'type' => 102,
),
),
'atom.xml' => array(
'keyValues' => array(
'type' => 103,
),
),
),
),
);
// Pour un fonctionnement correct du postVarSets, faire une copie du tableau d'origine, pour le domaine en question
$TYPO3_CONF_VARS['EXTCONF']['realurl']['xxx.ch'] = $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'];
Initial URL
Initial Description
tt_news: RealURL, multilanguage
Initial Title
tt_news: RealURL, multilanguage
Initial Tags
Initial Language
PHP