Bug #14165 ยป 0000092-tmenu_layers.php.diff
typo3_src-3.6.1/typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php 2004-05-14 19:55:05.000000000 +0200 | ||
---|---|---|
*
|
||
*
|
||
* 84: class tslib_tmenu_layers extends tslib_tmenu
|
||
* 117: function extProc_init()
|
||
* 135: function extProc_RO($key)
|
||
* 151: function extProc_beforeLinking($key)
|
||
* 202: function extProc_afterLinking($key)
|
||
* 237: function extProc_beforeAllWrap($item,$key)
|
||
* 250: function isSetIntval($in)
|
||
* 259: function extProc_finish ()
|
||
* 435: function extCalcBorderWithin($kind,$integer)
|
||
* 116: function extProc_init()
|
||
* 134: function extProc_RO($key)
|
||
* 150: function extProc_beforeLinking($key)
|
||
* 201: function extProc_afterLinking($key)
|
||
* 236: function extProc_beforeAllWrap($item,$key)
|
||
* 249: function isSetIntval($in)
|
||
* 258: function extProc_finish ()
|
||
* 434: function extCalcBorderWithin($kind,$integer)
|
||
*
|
||
* TOTAL FUNCTIONS: 8
|
||
* (This index is automatically created/updated by the extension "extdeveval")
|
||
... | ... | |
*/
|
||
class tslib_tmenu_layers extends tslib_tmenu {
|
||
// FULL DUPLICATE FROM gmenu_layers BEGIN:
|
||
var $GMENU_fixKey='layers';
|
||
... | ... | |
*/
|
||
function extProc_beforeAllWrap($item,$key) {
|
||
if ($this->mconf['relativeToTriggerItem']) {
|
||
$item = '<div id="anchorID'.t3lib_div::shortmd5($this->I['uid'].'-'.$this->WMid).'" style="position:absolute;visibility:hidden;"></div><div id="itemID'.t3lib_div::shortmd5($this->I['uid'].'-'.$this->WMid).'" style="width:100%; height:100%;">'.$item.'</div>';
|
||
$item = '<div id="anchorID'.t3lib_div::shortmd5($this->I['uid'].'-'.$this->WMid).'" style="position:absolute;visibility:hidden;"></div><div id="itemID'.t3lib_div::shortmd5($this->I['uid'].'-'.$this->WMid).'">'.$item.'</div>';
|
||
}
|
||
return $item;
|
||
}
|
||
... | ... | |
}
|
||
}
|
||
// FULL DUPLICATE FROM gmenu_layers END:
|
||
// FULL DUPLICATE FROM gmenu_layers END:
|
||
$GLOBALS['TSFE']->tmpl->menuclasses.=',tmenu_layers';
|
||