Seite 1 von 1

{catrow.forumrow.LAST_POST}

Verfasst: 28.09.2003 13:33
von [A=A] sc0l
Hi Leute!

Kann mir einer bitte sagen wo ich die funktion von diesen befehl finde: {catrow.forumrow.LAST_POST}

In viewforum.php???

Thx im vorraus...

Verfasst: 28.09.2003 13:40
von Leuchte
hm, was genau meinst du mit der funktion oder anders gefragt, was willst du denn machen?
die funktionen dafür kommen in der index.php vor. z.b.

Code: Alles auswählen

$last_post .= '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>';
und

Code: Alles auswählen

'LAST_POST' => $last_post,

Verfasst: 28.09.2003 14:43
von Gast

Code: Alles auswählen

								$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);

								$last_post = $last_post_time . '<br />';

								$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $forum_data[$j]['user_id']) . '">' .$forum_data[$j]['username'] . '</a> ';
								
								$last_post .= '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>';
							}
ich wollte das so ändern damit sich das hier öffnet

Code: Alles auswählen

<script language="JavaScript"> 
<!-- 
function openBrWindow666(PopUpURL) 
{ 

var PopUpLocationX=0; 
var PopUpLocationY=0; 

splashWin = window.open(PopUpURL,'clanbanzai','width=800,height=533,directories=no,toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,resizable=no,dependent=no'); 

splashWin.moveTo(PopUpLocationX, PopUpLocationY); 
} 
//--> 
</script>

einer hat mir geholfen bei [last post autor] und er hat das so gemacht

Code: Alles auswählen

     $last_post_author = ( $topic_rowset[$i]['id2'] == ANONYMOUS ) ? ( ($topic_rowset[$i]['post_username2'] != '' ) ? $topic_rowset[$i]['post_username2'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $topic_rowset[$i]['id2']) . '" target="clanbanzai" onclick="javascript:openBrWindow666(\'' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $topic_rowset[$i]['id2']) . '\')">' . $topic_rowset[$i]['user2'] . '</a>';

Verfasst: 28.09.2003 17:14
von [A=A] sc0l / Gast
kannst du damit was anfangen?

Verfasst: 28.09.2003 17:17
von codemonkey
Und was sollen wir dir jetzt sagen?

Verfasst: 28.09.2003 17:59
von [A=A] sc0l
ja was ich hier ändern muss

Code: Alles auswählen

                     $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']); 

                        $last_post = $last_post_time . '<br />'; 

                        $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $forum_data[$j]['user_id']) . '">' .$forum_data[$j]['username'] . '</a> '; 
                         
                        $last_post .= '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; 
                     }
damit es sich in diesen fenster öffnet

Code: Alles auswählen

<script language="JavaScript"> 
<!-- 
function openBrWindow7(PopUpURL) 
{ 

var PopUpLocationX=0; 
var PopUpLocationY=0; 

splashWin = window.open(PopUpURL,'clanbanzai','width=800,height=533,directories=no,toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,resizable=no,dependent=no'); 

splashWin.moveTo(PopUpLocationX, PopUpLocationY); 
} 
//--> 
</script>

Verfasst: 28.09.2003 18:00
von [A=A] sc0l
ich meine wenn man auf "Letzter Beitrag / >>> Autor" klickt

soll sich das in diesen Java fenster öffnen!

THX IM VORRAUS

Verfasst: 28.09.2003 18:12
von Mungo
Ein Topic ist genung.

Hier gehts weiter: http://www.phpbb.de/viewtopic.php?t=35110