kann mir jemand mal auf die Sprünge helfen ?
Ich brauche diese Farben in der viewtopic_body.tpl
Code: Alles auswählen
class="{postrow.ROW_CLASS}"
zb als
Code: Alles auswählen
class="{postrow.ROW_CLASS_NEW}"
Code: Alles auswählen
class="{postrow.ROW_CLASS}"
Code: Alles auswählen
class="{postrow.ROW_CLASS_NEW}"
Code: Alles auswählen
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
$template->assign_block_vars('postrow', array(
'ROW_COLOR' => '#' . $row_color,
'ROW_CLASS' => $row_class,
Code: Alles auswählen
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
$row_class_rev = ($row_class == $theme['td_class1']) ? $theme['td_class2'] : $theme['td_class1'];
$template->assign_block_vars('postrow', array(
'ROW_COLOR' => '#' . $row_color,
'ROW_CLASS' => $row_class,
'ROW_CLASS_REV' => $row_class_rev,
Code: Alles auswählen
{ROW_CLASS_REV}
Code: Alles auswählen
{postrow.ROW_CLASS_REV}