Bug #19622 » bug_9805_rtehtmlarea.diff
typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_browse_links.php (Arbeitskopie) | ||
---|---|---|
foreach($treeArr as $k => $v) {
|
||
$c++;
|
||
$bgColorClass = ($c+1)%2 ? 'bgColor' : 'bgColor-10';
|
||
if ($GLOBALS['SOBE']->browser->curUrlInfo['act']=='page' && $GLOBALS['SOBE']->browser->curUrlInfo['pageid']==$v['row']['uid'] && $GLOBALS['SOBE']->browser->curUrlInfo['pageid']) {
|
||
$arrCol='<td><img'.t3lib_iconWorks::skinImg($BACK_PATH,'gfx/blinkarrow_right.gif','width="5" height="9"').' class="c-blinkArrowR" alt="" /></td>';
|
||
$bgColorClass='bgColor4';
|
||
} else {
|
||
$arrCol='<td></td>';
|
||
}
|
||
... | ... | |
'<a href="#" onclick="'.htmlspecialchars($aOnClick).'"><img'.t3lib_iconWorks::skinImg($BACK_PATH,'gfx/ol/arrowbullet.gif','width="18" height="16"').' alt="" /></a>' :
|
||
'';
|
||
$out.='
|
||
<tr class="'.$bgColorClass.'">
|
||
<tr>
|
||
<td nowrap="nowrap"'.($v['row']['_CSSCLASS'] ? ' class="'.$v['row']['_CSSCLASS'].'"' : '').'>'.
|
||
$v['HTML'].
|
||
$this->wrapTitle($this->getTitleStr($v['row'],$titleLen),$v['row'],$this->ext_pArrPages).
|
||
... | ... | |
// Traverse rows for the tree and print them into table rows:
|
||
foreach($treeArr as $k => $v) {
|
||
$c++;
|
||
$bgColorClass=($c+1)%2 ? 'bgColor' : 'bgColor-10';
|
||
// Creating blinking arrow, if applicable:
|
||
if ($GLOBALS['SOBE']->browser->curUrlInfo['act']=='file' && $cmpPath==$v['row']['path']) {
|
||
$arrCol='<td><img'.t3lib_iconWorks::skinImg($BACK_PATH,'gfx/blinkarrow_right.gif','width="5" height="9"').' class="c-blinkArrowR" alt="" /></td>';
|
||
$bgColorClass='bgColor4';
|
||
} else {
|
||
$arrCol='<td></td>';
|
||
}
|
||
... | ... | |
// Put table row with folder together:
|
||
$out.='
|
||
<tr class="'.$bgColorClass.'">
|
||
<tr>
|
||
<td nowrap="nowrap">'.$v['HTML'].$this->wrapTitle(t3lib_div::fixed_lgd_cs($v['row']['title'],$titleLen),$v['row']).'</td>
|
||
'.$arrCol.'
|
||
<td>'.$cEbullet.'</td>
|