This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/site/beta5/layout/cripes/ajax.inc

20 lines
488 B
PHP
Raw Permalink Normal View History

2016-01-10 11:01:49 +01:00
<?php
function thm_getHeaderData() {
$pLib = input::$game->getLib('beta5/player');
$mLib = input::$game->getLib('beta5/msg');
$player = $_SESSION[game::sessName()]['player'];
$pi = $pLib->call('get', $player);
$newMsg = ($mLib->call('getNew', $player) > 0) ? 1 : 0;
return time() . "#{$pi['name']}#{$pi['cash']}#$newMsg#{$pi['alliance']}";
}
return array(
"func" => array('getHeaderData'),
"init" => "thmcrp_writeHeader(document.getElementById('thm-hdr-init').value);"
);
?>