Buggyboy Posted October 21, 2005 Report Share Posted October 21, 2005 Hallo! Mal eine Frage: Im Admin unter Wer ist Online bekommt man ja die aktuellen User aufgelistet die sich im Shop befinden und darunter eine Anzeige: Es sind zur Zeit 1 Kunden online Kann man diese Anzeige ( Es sind zur Zeit 1 Kunden online ) irgendwie in die Admin Box einbauen, sodas man nicht immer hin und herschalten mu? nur um mal zu sehen wieviele User online sind??? Vielen Dank... Peter Link to comment Share on other sites More sharing options...
burgi Posted October 21, 2005 Report Share Posted October 21, 2005 Hier der Code: in der lang/german/german.php folgendes hinzuf?gen define('BOX_ENTRY_ONLINE','Derzeit Online'); und in der template/dein template/source/boxes/admin.php diesen Eintrag $box_content= '<b>' . BOX_TITLE_STATISTICS . '</b><br />' . $orders_contents . '<br />' . BOX_ENTRY_CUSTOMERS . ' ' . $customers['count'] . '<br />' . BOX_ENTRY_PRODUCTS . ' ' . $products['count'] . '<br />' . BOX_ENTRY_REVIEWS . ' ' . $reviews['count'] .'<br />' . $admin_image . '<br />' .$admin_link; austauschen mit nachfolgendem Code $whos_online_query = xtc_db_query("select customer_id from " . TABLE_WHOS_ONLINE); $user_online=xtc_db_num_rows($whos_online_query); $box_content= '<b>' . BOX_TITLE_STATISTICS . '</b><br />' . $orders_contents . '<br />' . BOX_ENTRY_CUSTOMERS . ' ' . $customers['count'] . '<br />' . BOX_ENTRY_PRODUCTS . ' ' . $products['count'] . '<br />' . BOX_ENTRY_REVIEWS . ' ' . $reviews['count'] .'<br />' . BOX_ENTRY_ONLINE . ' ' . $user_online .'<br />' . $admin_image . '<br />' .$admin_link; Link to comment Share on other sites More sharing options...
Buggyboy Posted October 21, 2005 Author Report Share Posted October 21, 2005 Hi Burgi! Vielen Dank... klappt wunderbar... ;-} Peter Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.