Unsupported PHP app for analysing and displaying stats for Team Fortress 2
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

entered.php 592B

1234567891011121314151617
  1. <?PHP
  2. class EnteredHandler {
  3. /*-------------------------------------------------------------------------*\
  4. * Handles players entering the game. *
  5. * *
  6. * Line sample: the game *
  7. \*-------------------------------------------------------------------------*/
  8. public function parseLine($date, $player, $playerdetails, $line) {
  9. $player->openSession($date, $playerdetails['uid'], $playerdetails['alias']);
  10. }
  11. }
  12. ?>