1 sayfadan 1. sayfa

Phpbb 3 İçin Kullanıcının Online Süresini Gösterme

İletiTarih: 04.09.2008, 15:48
okyanus_05
Selam arkadaşlar phpbb 3 için kullanıcıların online süresini nasıl gösteririm dostlar sitede veya wepte arama yaptım bulamadım online süresini forumlardan sadece smf kullanıcıların online süresini gösteriyor yani aşşağıdaki resimdeki gibi
Resim

Dostlar ben bu online süresini phpbb3 için nasıl uyarlarım php kodlarını bile smf den aldım acaba bu kodlarla phpbb3 nasıl uyarlama yaparız işte kodlar

Kod: Tümünü seç
// Show the total time logged in?
      if (!empty($context['user']['total_time_logged_in']))
      {
         echo '
                        ', $txt['totalTimeLogged1'];

         // If days is just zero, don't bother to show it.
         if ($context['user']['total_time_logged_in']['days'] > 0)
            echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

         // Same with hours - only show it if it's above zero.
         if ($context['user']['total_time_logged_in']['hours'] > 0)
            echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

         // But, let's always show minutes - Time wasted here: 0 minutes ;).
         echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '<br />';
      }
      echo '            </span>';
   }