Actions
Feature #15269
closedAdd a Querystring to a <LINK id/type-pair
Start date:
2005-12-09
Due date:
% Done:
0%
Estimated time:
PHP Version:
4.3
Tags:
Complexity:
Sprint Focus:
Description
The additionalParams - Behaviour should be also available for a manually or by RTE inserted typolink <LINK>. The Querystring could be an extension of the id/type-pair of the LINK. For example: <LINK 97,1,&print=1>
Working example for class.tslib_content.php
$pairParts = t3lib_div::trimExplode(',',$link_param);
if (count($pairParts)>1) {
$link_param = $pairParts0;
$theTypeP = $pairParts1; // Overruling 'type'
+++ if(isset($pairParts2)) $conf['additionalParams'] = $pairParts2;
}
(issue imported from #M2019)
Files
Actions