myaac/system/pages/team.php
slawkens ac3691dc08 * update to 0.4.0
* fixed some bugs in bugtracker
* updated database to version 9
2017-09-13 15:30:18 +02:00

128 lines
3.2 KiB
PHP

<?php
/**
* Team
*
* @package MyAAC
* @author Gesior <jerzyskalski@wp.pl>
* @author Slawkens <slawkens@gmail.com>
* @copyright 2017 MyAAC
* @version 0.4.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
$title = 'Gamemasters List';
if($config['account_country'])
require(SYSTEM . 'countries.conf.php');
$groups = new OTS_Groups_List();
if(!$groups->count())
{
echo 'Error while reading groups.xml';
return;
}
$newStyle = ($config['team_style'] == 2);
if(!$newStyle)
{
echo '<center><h2>Support in game</h2></center>
<table border="0" cellspacing="1" cellpadding="4" width="100%">' . getGroupHeader();
}
$group_tmp = array();
$i = 0;
$groupList = $groups->getGroups();
foreach($groupList as $id => $group)
{
if($id <= 1)
continue;
$group_members = $group->getPlayersList();
if(!count($group_members))
continue;
$members_count = 0;
$groupNames = array();
foreach($group_members as $member)
{
if(!admin() && $member->getCustomField('hidden') > 0)
continue;
$members_count++;
$flag = '';
if($config['account_country'])
$flag = getFlagImage($member->getAccount()->getCustomField('country'));
$tmp = '<tr bgcolor="' . getStyle($i++) . '">';
if(!$newStyle)
$tmp .= '<td>' . ucfirst($group->getName()) . '</td>';
$tmp .= '<td>' . $flag . ' ' . getPlayerLink($member->getName()) . '</td>';
if($config['team_display_status'])
$tmp .= '<td>' . ($member->isOnline() > 0 ? '<font color="green"><b>Online</b></font>' : '<font color="red"><b>Offline</b></font>') . '</td>';
if($config['multiworld'] || $config['team_display_world'])
$tmp .= '<td><font class="white"><b>' . getWorldName($member->getWorldId()) . '</b></font></td>';
$lastLogin = '';
if($config['team_display_lastlogin'])
{
$lastLogin = 'Never.';
if($member->getLastLogin() > 0)
$lastLogin = date("j F Y, g:i a", $member->getLastLogin());
}
$tmp .= '<td>' . $lastLogin . '</td></tr>';
if($newStyle)
{
if(isset($groupNames[$group->getName()]))
$groupNames[$group->getName()] .= $tmp;
else
$groupNames[$group->getName()] = $tmp;
}
else
echo $tmp;
}
if($newStyle && $members_count > 0)
{
$group_tmp[$id] = '<center><h2>' . ucfirst($group->getName()) . 's</h2></center>
<table border="0" cellspacing="1" cellpadding="4" width="100%">' . getGroupHeader(false) . $groupNames[$group->getName()] . '</table>';
}
}
if($newStyle)
{
for($i = $id; $i >= 0; $i--)
{
if(isset($group_tmp[$i]))
echo $group_tmp[$i];
}
}
else
echo '</table>';
function getGroupHeader($groupField = true)
{
global $config;
$ret = '<tr bgcolor="' . $config['vdarkborder'] . '">';
if($groupField)
$ret .= '<td width="20%"><font class="white"><b>Group</b></font></td>';
$ret .= '<td width="40%"><font class="white"><b>Name</b></font></td>';
if($config['team_display_status'])
$ret .= '<td width="20%"><font class="white"><b>Status</b></font></td>';
if($config['multiworld'] || $config['team_display_world'])
$ret .= '<td><font class="white"><b>World</b></font></td>';
if($config['team_display_lastlogin'])
$ret .= '<td width="20%"><font class="white"><b>Last login</b></font></td>';
$ret .= '</tr>';
return $ret;
}
?>