<?php
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* wgTeams module for xoops
*
* @copyright The XOOPS Project (https://xoops.org)
* @license GPL 2.0 or later
* @package wgteams
* @since 1.0
* @min_xoops 2.5.7
* @author Goffy - Wedega.com - Email:<webmaster@wedega.com> - Website:<https://wedega.com>
* @version $Id: 1.0 teams.php 1 Sun 2015/12/27 23:18:00Z Goffy - Wedega $
*/
use Xmf\Request;
use XoopsModules\Wgteams;
require __DIR__ . '/header.php';
$GLOBALS['xoopsOption']['template_main'] = 'wgteams_teams.tpl';
require_once XOOPS_ROOT_PATH . '/header.php';
/** @var Wgteams\Helper $helper */
$helper = Wgteams\Helper::getInstance();
$startpage = $helper->getConfig('startpage', 0)[0];
$team_id = Request::getInt('team_id', 0);
$start = Request::getInt('start', 0);
$limit = Request::getInt('limit', $helper->getConfig('userpager'));
// Define Stylesheet
$xoTheme->addStylesheet($style);
$keywords = [];
$crit_teams = new \CriteriaCompo();
$crit_teams->add(new \Criteria('team_online', '1'));
if ($team_id > 0) {
$crit_teams->add(new \Criteria('team_id', $team_id));
}
$crit_teams->setSort('team_weight');
$crit_teams->setOrder('ASC');
if (3 == $startpage) {
$crit_teams->setLimit('1');
}
$teamsCount = $teamsHandler->getCount($crit_teams);
$teamsAll = $teamsHandler->getAll($crit_teams);
$teams_list = [];
if ($teamsCount > 0) {
// Get All Teams
$teams_list = wgteamsGetTeamMemberDetails($teamsAll);
if (0 == $team_id && 1 == $startpage[0]) {
$teams_list = wgteamsGetTeamDetails($teamsAll);
}
} else {
echo _MA_WGTEAMS_TEAMS_NODATA;
}
$team_name = '';
if (count($teams_list) > 0) {
foreach (array_keys($teams_list) as $i) {
$team_name = $teams_list[$i]['team_name'];
$keywords[] = $teams_list[$i]['team_name'];
}
$GLOBALS['xoopsTpl']->append('teams_list', $teams_list);
unset($teams_list);
}
// fill in template
$GLOBALS['xoopsTpl']->assign('xoops_icons32_url', XOOPS_ICONS32_URL);
$GLOBALS['xoopsTpl']->assign('wgteams_upload_url', WGTEAMS_UPLOAD_URL);
$GLOBALS['xoopsTpl']->assign('wgteams_teams_upload_url', WGTEAMS_UPLOAD_URL . '/teams/images/');
// Display Navigation
if ($teamsCount > $limit) {
require_once XOOPS_ROOT_PATH . '/class/pagenav.php';
$nav = new \XoopsPageNav($teamsCount, $limit, $start, 'start');
$GLOBALS['xoopsTpl']->assign('pagenav', $nav->renderNav(4));
}
// Breadcrumbs
if (1 == $helper->getConfig('wgteams_showbreadcrumbs')) {
if ($team_id > 0 && '' !== $team_name) {
$xoBreadcrumbs[] = ['title' => $GLOBALS['xoopsModule']->getVar('name'), 'link' => WGTEAMS_URL . '/'];
$xoBreadcrumbs[] = ['title' => $team_name];
} else {
$xoBreadcrumbs[] = ['title' => $GLOBALS['xoopsModule']->getVar('name')];
}
$GLOBALS['xoopsTpl']->assign('showbreadcrumbs', '1');
}
// keywords
wgteamsMetaKeywords($helper->getConfig('keywords') . ', ' . implode(', ', $keywords));
unset($keywords);
// description
wgteamsMetaDescription(_MA_WGTEAMS_TEAM_DESC);
$GLOBALS['xoopsTpl']->assign('wgteams_url_index', WGTEAMS_URL . '/index.php');
$GLOBALS['xoopsTpl']->assign('xoops_mpageurl', WGTEAMS_URL . '/index.php');
require __DIR__ . '/footer.php';
|