Merge remote-tracking branch 'football/master'

# Conflicts:
#	acp/matches_module.php
#	adm/style/acp_football_leagues.html
#	adm/style/acp_football_matches.html
#	block/all_bets.php
#	block/rank_matchday.php
#	block/ranks_total.php
#	config/services.yml
#	controller/main.php
#	event/main_listener.php
#	includes/constants.php
#	includes/functions.php
#	language/de/football.php
#	language/de/info_acp_leagues.php
#	language/de/info_acp_matches.php
#	styles/prosilver/template/all_bets.html
#	styles/prosilver/template/results.html
#	styles/prosilver/template/table.html
#	styles/prosilver/theme/football.css
This commit is contained in:
2023-06-07 20:40:33 +02:00
167 changed files with 12199 additions and 12181 deletions

3
.gitignore vendored
View File

@@ -63,3 +63,6 @@ Icon
/images/arrow_down.gif /images/arrow_down.gif
/images/arrow_up.gif /images/arrow_up.gif
/migrations/v099_beta1.php /migrations/v099_beta1.php
/.buildpath
/.project
/.settings/

11
.idea/aws.xml generated Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="accountSettings">
<option name="activeRegion" value="us-east-1" />
<option name="recentlyUsedRegions">
<list>
<option value="us-east-1" />
</list>
</option>
</component>
</project>

4
.idea/php.xml generated Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PhpProjectSharedConfiguration" php_language_level="5.3.0" />
</project>

View File

@@ -1,6 +1,6 @@
Follow the phpBB instruction to the convert from 3.0 to 3.1. Follow the phpBB instruction to the convert from 3.0 to 3.1.
Don't remove football MOD permissions, custom profile fields and football tables in database. Don't remove football MOD permissions, custom profile fields and football tables in database.
Please remove recursive the "football MOD Version 0.9.3" ACP Modules in ACP-SYSTEM-MODUL MANAGEMENT. Please remove recursive the "football MOD Version 0.9.3" ACP Modules in ACP-SYSTEM-MODUL MANAGEMENT.
Unzip Football Prediction League extension in folder ext/ Unzip Football Prediction League extension in folder ext/
Activate the Football Prediction League extension in ACP. Activate the Football Prediction League extension in ACP.

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class all_bets_info class all_bets_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\all_bets_module', 'filename' => '\football\football\acp\all_bets_module',
'title' => 'ACP_FOOTBALL_ALL_BETS_MANAGEMENT', 'title' => 'ACP_FOOTBALL_ALL_BETS_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_ALL_BETS_VIEW', 'auth' => 'acl_a_football_editbets', 'cat' => array('ACP_FOOTBALL_ALL_BETS')), 'manage' => array('title' => 'ACP_FOOTBALL_ALL_BETS_VIEW', 'auth' => 'acl_a_football_editbets', 'cat' => array('ACP_FOOTBALL_ALL_BETS')),
), ),
); );
} }
} }

View File

@@ -56,13 +56,13 @@ class all_bets_module
$form_key = 'acp_football_all_bets'; $form_key = 'acp_football_all_bets';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$season = $this->request->variable('s', 0); $season = $this->request->variable('s', 0);
$league = $this->request->variable('l', 0); $league = $this->request->variable('l', 0);
$matchday = $this->request->variable('m', 0); $matchday = $this->request->variable('m', 0);
$start = $this->request->variable('start', 0); $start = $this->request->variable('start', 0);
// Grab current season // Grab current season
if (!$season) if (!$season)
@@ -118,11 +118,11 @@ class all_bets_module
$league_options .= '<option value="' . $row['league'] . '"' . $selected . '>' . $row['league_name'] . '</option>'; $league_options .= '<option value="' . $row['league'] . '"' . $selected . '>' . $row['league_name'] . '</option>';
if ($selected <> '') if ($selected <> '')
{ {
$league_matchdays = $row['matchdays']; $league_matchdays = $row['matchdays'];
$matches_matchday = $row['matches_on_matchday']; $matches_matchday = $row['matches_on_matchday'];
$league_name = $row['league_name']; $league_name = $row['league_name'];
$league_type = $row['league_type']; $league_type = $row['league_type'];
$ko_league = ($row['league_type'] == LEAGUE_KO) ? true : false; $ko_league = ($row['league_type'] == LEAGUE_KO) ? true : false;
} }
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -320,9 +320,9 @@ class all_bets_module
$colorstyle_bet = color_style($user_bet['status']); $colorstyle_bet = color_style($user_bet['status']);
$template->assign_block_vars('match_panel.user_row.bet', array( $template->assign_block_vars('match_panel.user_row.bet', array(
'BET' => $bet_home. ':'. $bet_guest, 'BET' => $bet_home. ':'. $bet_guest,
'COLOR_STYLE' => $colorstyle_bet, 'COLOR_STYLE' => $colorstyle_bet,
'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'], 'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'],
) )
); );
@@ -364,9 +364,9 @@ class all_bets_module
} }
if (0 == $match['hid']) if (0 == $match['hid'])
{ {
$home_info = get_team($season, $league, $match['match_no'], 'team_id_home', $match['formula_home']); $home_info = get_team($season, $league, $match['match_no'], 'team_id_home', $match['formula_home']);
$home_in_array = explode("#",$home_info); $home_in_array = explode("#",$home_info);
$homename = $home_in_array[3]; $homename = $home_in_array[3];
} }
else else
{ {
@@ -374,9 +374,9 @@ class all_bets_module
} }
if (0 == $match['gid']) if (0 == $match['gid'])
{ {
$guest_info = get_team($season, $league, $match['match_no'], 'team_id_guest', $match['formula_guest']); $guest_info = get_team($season, $league, $match['match_no'], 'team_id_guest', $match['formula_guest']);
$guest_in_array = explode("#",$guest_info); $guest_in_array = explode("#",$guest_info);
$guestname = $guest_in_array[3]; $guestname = $guest_in_array[3];
} }
else else
{ {
@@ -384,10 +384,10 @@ class all_bets_module
} }
$colorstyle_match = color_style($match['status']); $colorstyle_match = color_style($match['status']);
$template->assign_block_vars('match_panel.match', array( $template->assign_block_vars('match_panel.match', array(
'HOME_NAME' => $homename, 'HOME_NAME' => $homename,
'GUEST_NAME' => $guestname, 'GUEST_NAME' => $guestname,
'RESULT' => $match['goals_home']. ':'.$match['goals_guest'], 'RESULT' => $match['goals_home']. ':'.$match['goals_guest'],
'COLOR_STYLE' => $colorstyle_match, 'COLOR_STYLE' => $colorstyle_match,
) )
); );
@@ -428,9 +428,9 @@ class all_bets_module
$colorstyle_bet = color_style($user_bet['status']); $colorstyle_bet = color_style($user_bet['status']);
$template->assign_block_vars('match_panel.user_row.bet', array( $template->assign_block_vars('match_panel.user_row.bet', array(
'BET' => $bet_home. ':'. $bet_guest, 'BET' => $bet_home. ':'. $bet_guest,
'COLOR_STYLE' => $colorstyle_bet, 'COLOR_STYLE' => $colorstyle_bet,
'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'], 'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'],
) )
); );
@@ -439,8 +439,8 @@ class all_bets_module
$sum_total[$user_bet['username']] += $total; $sum_total[$user_bet['username']] += $total;
$matchday_sum_total += $total; $matchday_sum_total += $total;
$template->assign_block_vars('match_panel.user_row.points', array( $template->assign_block_vars('match_panel.user_row.points', array(
'COLOR_STYLE' => $colorstyle_total, 'COLOR_STYLE' => $colorstyle_total,
'POINTS_TOTAL' => $sum_total[$user_bet['username']], 'POINTS_TOTAL' => $sum_total[$user_bet['username']],
) )
); );
$bet_index = 0; $bet_index = 0;
@@ -448,9 +448,9 @@ class all_bets_module
} }
$template->assign_block_vars('match_panel.tendency_footer', array( $template->assign_block_vars('match_panel.tendency_footer', array(
'S_TOTAL' => true, 'S_TOTAL' => true,
'COLOR_STYLE' => $colorstyle_total, //currently ignored 'COLOR_STYLE' => $colorstyle_total, //currently ignored
'SUMTOTAL' => $matchday_sum_total, 'SUMTOTAL' => $matchday_sum_total,
) )
); );
foreach ($matches_tendency AS $match_tendency) foreach ($matches_tendency AS $match_tendency)
@@ -521,12 +521,12 @@ class all_bets_module
$extra_colorstyle = color_style($row['extra_status']); $extra_colorstyle = color_style($row['extra_status']);
$template->assign_block_vars('extra_panel', array( $template->assign_block_vars('extra_panel', array(
'QUESTION' => $row['question'], 'QUESTION' => $row['question'],
'RESULT' => ($display_type == 1) ? $row['result_team'] : $row['result'], 'RESULT' => ($display_type == 1) ? $row['result_team'] : $row['result'],
'POINTS' => $row['extra_points'], 'POINTS' => $row['extra_points'],
'EVALUATION' => ($row['matchday'] == $row['matchday_eval']) ? sprintf($user->lang['MATCHDAY']) : sprintf($user->lang['TOTAL']), 'EVALUATION' => ($row['matchday'] == $row['matchday_eval']) ? sprintf($user->lang['MATCHDAY']) : sprintf($user->lang['TOTAL']),
'EVALUATION_TITLE' => $eval_title, 'EVALUATION_TITLE' => $eval_title,
'COLOR_STYLE' => $extra_colorstyle, 'COLOR_STYLE' => $extra_colorstyle,
) )
); );
@@ -564,11 +564,11 @@ class all_bets_module
$template->assign_block_vars('extra_panel.user_row', array( $template->assign_block_vars('extra_panel.user_row', array(
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'USER_NAME' => $user_row['username'], 'USER_NAME' => $user_row['username'],
'BET' => ($display_type == 1) ? $bet_team : $bet, 'BET' => ($display_type == 1) ? $bet_team : $bet,
'BET_POINTS' => $user_row['bet_points'], 'BET_POINTS' => $user_row['bet_points'],
'COLOR_STYLE' => $extra_colorstyle, 'COLOR_STYLE' => $extra_colorstyle,
) )
); );
} }
@@ -579,21 +579,20 @@ class all_bets_module
$legend = delivery($season, $league, $matchday); $legend = delivery($season, $league, $matchday);
$template->assign_vars(array( $template->assign_vars(array(
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'all_bets', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'all_bets', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_LEAGUE' => $league, 'S_LEAGUE' => $league,
'S_MATCHDAY' => $matchday, 'S_MATCHDAY' => $matchday,
'S_SEASON_OPTIONS' => $season_options, 'S_SEASON_OPTIONS' => $season_options,
'S_LEAGUE_OPTIONS' => $league_options, 'S_LEAGUE_OPTIONS' => $league_options,
'S_MATCHDAY_OPTIONS' => $matchday_options, 'S_MATCHDAY_OPTIONS' => $matchday_options,
'S_DISPLAY_ALL_BETS' => true, 'S_DISPLAY_ALL_BETS' => true,
'S_MATCHES_ON_MATCHDAY' => $matches_on_matchday, 'S_MATCHES_ON_MATCHDAY' => $matches_on_matchday,
'S_SPALTEN' => ($count_matches * 2)+2, 'S_SPALTEN' => ($count_matches * 2)+2,
'S_VERSION_NO' => $this->config['football_version'], 'S_VERSION_NO' => $this->config['football_version'],
'TOTAL_USERS' => ($total_users == 1) ? $user->lang['VIEW_BET_USER'] : sprintf($user->lang['VIEW_BET_USERS'], $total_users), 'TOTAL_USERS' => ($total_users == 1) ? $user->lang['VIEW_BET_USER'] : sprintf($user->lang['VIEW_BET_USERS'], $total_users),
'PAGE_NUMBER' => $pagination->on_page($total_users, $this->config['football_users_per_page'], $start), 'PAGE_NUMBER' => $pagination->on_page($total_users, $this->config['football_users_per_page'], $start),
) )
); );
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class bank_info class bank_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\bank_module', 'filename' => '\football\football\acp\bank_module',
'title' => 'ACP_FOOTBALL_BANK_MANAGEMENT', 'title' => 'ACP_FOOTBALL_BANK_MANAGEMENT',
'version' => '0.9.2', 'version' => '0.9.2',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_BANK_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_BANK')), 'manage' => array('title' => 'ACP_FOOTBALL_BANK_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_BANK')),
), ),
); );
} }
} }

View File

@@ -73,7 +73,7 @@ class bank_module
$form_key = 'acp_football_bank'; $form_key = 'acp_football_bank';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : ((isset($_POST['addmembers'])) ? 'addmembers' : $this->request->variable('action', '')); $action = (isset($_POST['add'])) ? 'add' : ((isset($_POST['addmembers'])) ? 'addmembers' : $this->request->variable('action', ''));
@@ -555,7 +555,7 @@ class bank_module
'POINTS' => $this->config['points_name'], 'POINTS' => $this->config['points_name'],
'TARGET' => $target, 'TARGET' => $target,
'ACTUAL' => $actual, 'ACTUAL' => $actual,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bank', 's' => $season, 'l' => $league)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bank', 's' => $season, 'l' => $league)),
'U_ACTION' => $this->u_action . "&amp;s=$season&amp;l=$league", 'U_ACTION' => $this->u_action . "&amp;s=$season&amp;l=$league",
'U_BACK' => $this->u_action. "&amp;s=$season&amp;l=$league", 'U_BACK' => $this->u_action. "&amp;s=$season&amp;l=$league",
) )
@@ -593,7 +593,7 @@ class bank_module
{ {
$template->assign_block_vars('member', array( $template->assign_block_vars('member', array(
'U_USER_EDIT' => append_sid("{$phpbb_admin_path}index.$phpEx", "i=users&amp;action=edit&amp;u={$row['user_id']}"), 'U_USER_EDIT' => append_sid("{$phpbb_admin_path}index.$phpEx", "i=users&amp;action=edit&amp;u={$row['user_id']}"),
'U_USER_BANK' => $helper->route('football_main_controller',array('side' => 'bank', 's' => $season, 'l' => $league, 'u' => $row['user_id'])), 'U_USER_BANK' => $helper->route('football_football_controller',array('side' => 'bank', 's' => $season, 'l' => $league, 'u' => $row['user_id'])),
'USERNAME' => $row['username'], 'USERNAME' => $row['username'],
'POINTS' => $functions_points->number_format_points($row['user_points']), 'POINTS' => $functions_points->number_format_points($row['user_points']),
'TARGET' => $functions_points->number_format_points($row['target']), 'TARGET' => $functions_points->number_format_points($row['target']),
@@ -619,7 +619,7 @@ class bank_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bank', 's' => $season)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bank', 's' => $season)),
'U_DLOAD_BANK_OPEN' => $helper->route('football_football_download',array('downside' => 'dload_bank_open', 's' => $season)), 'U_DLOAD_BANK_OPEN' => $helper->route('football_football_download',array('downside' => 'dload_bank_open', 's' => $season)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_LIST_DEPOSITED' => ($this->config['football_ult_points'] == UP_POINTS) ? false : true, 'S_LIST_DEPOSITED' => ($this->config['football_ult_points'] == UP_POINTS) ? false : true,
@@ -645,7 +645,7 @@ class bank_module
LEFT JOIN ' . FOOTB_POINTS . " AS p ON (p.season = $season AND p.league = l.league) LEFT JOIN ' . FOOTB_POINTS . " AS p ON (p.season = $season AND p.league = l.league)
WHERE l.season = $season WHERE l.season = $season
GROUP BY l.league GROUP BY l.league
ORDER BY league ASC"; ORDER BY l.league ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows_leagues = $db->sql_fetchrowset($result); $rows_leagues = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -670,5 +670,3 @@ class bank_module
} }
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class bets_info class bets_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\bets_module', 'filename' => '\football\football\acp\bets_module',
'title' => 'ACP_FOOTBALL_BETS_MANAGEMENT', 'title' => 'ACP_FOOTBALL_BETS_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_BETS_MANAGE', 'auth' => 'acl_a_football_editbets', 'cat' => array('ACP_FOOTBALL_BETS')), 'manage' => array('title' => 'ACP_FOOTBALL_BETS_MANAGE', 'auth' => 'acl_a_football_editbets', 'cat' => array('ACP_FOOTBALL_BETS')),
), ),
); );
} }
} }

View File

@@ -66,7 +66,7 @@ class bets_module
$form_key = 'acp_football_bets'; $form_key = 'acp_football_bets';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['bet'])) ? 'bet' : $this->request->variable('action', ''); $action = (isset($_POST['bet'])) ? 'bet' : $this->request->variable('action', '');
@@ -586,7 +586,7 @@ class bets_module
) )
); );
} }
$db->sql_freeresult($resultopen); $db->sql_freeresult($result);
// Calculate extra bets of matchday // Calculate extra bets of matchday
// Start select team // Start select team
@@ -733,7 +733,7 @@ class bets_module
$legend = delivery($season, $league, $matchday); $legend = delivery($season, $league, $matchday);
$template->assign_vars(array( $template->assign_vars(array(
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_LEGEND' => $legend, 'S_LEGEND' => $legend,
'S_SUCCESS' => (sizeof($success)) ? true : false, 'S_SUCCESS' => (sizeof($success)) ? true : false,
'SUCCESS_MSG' => (sizeof($success)) ? implode('<br />', $success) : '', 'SUCCESS_MSG' => (sizeof($success)) ? implode('<br />', $success) : '',
@@ -753,4 +753,3 @@ class bets_module
); );
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class extra_info class extra_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\extra_module', 'filename' => '\football\football\acp\extra_module',
'title' => 'ACP_FOOTBALL_EXTRA_MANAGEMENT', 'title' => 'ACP_FOOTBALL_EXTRA_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_EXTRA_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_EXTRA')), 'manage' => array('title' => 'ACP_FOOTBALL_EXTRA_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_EXTRA')),
), ),
); );
} }
} }

View File

@@ -56,7 +56,7 @@ class extra_module
$form_key = 'acp_football_extra'; $form_key = 'acp_football_extra';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : ((isset($_POST['remove'])) ? 'remove' : $this->request->variable('action', '')); $action = (isset($_POST['add'])) ? 'add' : ((isset($_POST['remove'])) ? 'remove' : $this->request->variable('action', ''));
@@ -415,7 +415,7 @@ class extra_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_LEAGUE' => $league, 'S_LEAGUE' => $league,
'S_SEASON_OPTIONS' => $season_options, 'S_SEASON_OPTIONS' => $season_options,
@@ -456,4 +456,3 @@ class extra_module
} }
} }
} }
?>

View File

@@ -1,28 +1,28 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class football_info class football_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\football_module', 'filename' => '\football\football\acp\football_module',
'title' => 'ACP_FOOTBALL_MANAGEMENT', 'title' => 'ACP_FOOTBALL_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'settings' => array('title' => 'ACP_FOOTBALL_SETTINGS', 'auth' => 'acl_a_football_config', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')), 'settings' => array('title' => 'ACP_FOOTBALL_SETTINGS', 'auth' => 'acl_a_football_config', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')),
'features' => array('title' => 'ACP_FOOTBALL_FEATURES', 'auth' => 'acl_a_football_config', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')), 'features' => array('title' => 'ACP_FOOTBALL_FEATURES', 'auth' => 'acl_a_football_config', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')),
'menu' => array('title' => 'ACP_FOOTBALL_MENU', 'auth' => 'acl_a_football_config', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')), 'menu' => array('title' => 'ACP_FOOTBALL_MENU', 'auth' => 'acl_a_football_config', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')),
'userguide' => array('title' => 'ACP_FOOTBALL_USERGUIDE','auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')), 'userguide' => array('title' => 'ACP_FOOTBALL_USERGUIDE','auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_CONFIGURATION')),
), ),
); );
} }
} }

View File

@@ -65,12 +65,12 @@ class football_module
switch ($mode) switch ($mode)
{ {
case 'userguide': case 'userguide':
$this->page_title = 'ACP_FOOTBALL_USERGUIDE'; $this->page_title = 'ACP_FOOTBALL_USERGUIDE';
$this->tpl_name = 'acp_football_userguide'; $this->tpl_name = 'acp_football_userguide';
$template->assign_vars(array( $template->assign_vars(array(
'S_IN_FOOTBALL_USERGUIDE' => true, 'S_IN_FOOTBALL_USERGUIDE' => true,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet')), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet')),
'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'], 'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'],
'ICON_BACK_TO_TOP' => '<img src="' . $phpbb_admin_path . 'images/icon_up.gif" style="vertical-align: middle;" alt="' . $user->lang['BACK_TO_TOP'] . '" title="' . $user->lang['BACK_TO_TOP'] . '" />', 'ICON_BACK_TO_TOP' => '<img src="' . $phpbb_admin_path . 'images/icon_up.gif" style="vertical-align: middle;" alt="' . $user->lang['BACK_TO_TOP'] . '" title="' . $user->lang['BACK_TO_TOP'] . '" />',
'S_VERSION_NO' => $this->config['football_version'], 'S_VERSION_NO' => $this->config['football_version'],
@@ -242,7 +242,7 @@ class football_module
$this->page_title = $display_vars['title']; $this->page_title = $display_vars['title'];
$template->assign_vars(array( $template->assign_vars(array(
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet')), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet')),
'L_TITLE' => $user->lang[$display_vars['title']], 'L_TITLE' => $user->lang[$display_vars['title']],
'L_TITLE_EXPLAIN' => $user->lang[$display_vars['title'] . '_EXPLAIN'], 'L_TITLE_EXPLAIN' => $user->lang[$display_vars['title'] . '_EXPLAIN'],
'S_ERROR' => (sizeof($error)) ? true : false, 'S_ERROR' => (sizeof($error)) ? true : false,
@@ -434,5 +434,3 @@ class football_module
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class ko_info class ko_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\ko_module', 'filename' => '\football\football\acp\ko_module',
'title' => 'ACP_FOOTBALL_KO_MANAGEMENT', 'title' => 'ACP_FOOTBALL_KO_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_KO_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_KO')), 'manage' => array('title' => 'ACP_FOOTBALL_KO_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_KO')),
), ),
); );
} }
} }

View File

@@ -56,7 +56,7 @@ class ko_module
$form_key = 'acp_football_ko'; $form_key = 'acp_football_ko';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['update'])) ? 'update' : $this->request->variable('action', ''); $action = (isset($_POST['update'])) ? 'update' : $this->request->variable('action', '');
@@ -230,7 +230,7 @@ class ko_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league)),
'S_ERROR' => (sizeof($error)) ? true : false, 'S_ERROR' => (sizeof($error)) ? true : false,
'ERROR_MSG' => (sizeof($error)) ? implode('<br />', $error) : '', 'ERROR_MSG' => (sizeof($error)) ? implode('<br />', $error) : '',
'S_SUCCESS' => (sizeof($success)) ? true : false, 'S_SUCCESS' => (sizeof($success)) ? true : false,
@@ -252,4 +252,3 @@ class ko_module
); );
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class leagues_info class leagues_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\leagues_module', 'filename' => '\football\football\acp\leagues_module',
'title' => 'ACP_FOOTBALL_LEAGUES_MANAGEMENT', 'title' => 'ACP_FOOTBALL_LEAGUES_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_LEAGUES_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_LEAGUES')), 'manage' => array('title' => 'ACP_FOOTBALL_LEAGUES_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_LEAGUES')),
), ),
); );
} }
} }

View File

@@ -56,7 +56,7 @@ class leagues_module
$form_key = 'acp_football_leagues'; $form_key = 'acp_football_leagues';
add_form_key($form_key); add_form_key($form_key);
include($phpbb_root_path . 'includes/functions_user.' . $phpEx); include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : ((isset($_POST['addmembers'])) ? 'addmembers' : $this->request->variable('action', '')); $action = (isset($_POST['add'])) ? 'add' : ((isset($_POST['addmembers'])) ? 'addmembers' : $this->request->variable('action', ''));
@@ -693,7 +693,7 @@ class leagues_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_SEASON_OPTIONS' => $season_options, 'S_SEASON_OPTIONS' => $season_options,
'S_LEAGUE_ADD' => true, 'S_LEAGUE_ADD' => true,
@@ -711,8 +711,8 @@ class leagues_module
FROM ' . FOOTB_LEAGUES . ' AS l FROM ' . FOOTB_LEAGUES . ' AS l
LEFT JOIN ' . FOOTB_BETS . " AS b ON (b.season = l.season AND b.league = l.league) LEFT JOIN ' . FOOTB_BETS . " AS b ON (b.season = l.season AND b.league = l.league)
WHERE l.season = $season WHERE l.season = $season
GROUP BY league GROUP BY l.league
ORDER BY league ASC"; ORDER BY l.league ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows_leagues = $db->sql_fetchrowset($result); $rows_leagues = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -751,4 +751,3 @@ class leagues_module
} }
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class matchdays_info class matchdays_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\matchdays_module', 'filename' => '\football\football\acp\matchdays_module',
'title' => 'ACP_FOOTBALL_MATCHDAYS_MANAGEMENT', 'title' => 'ACP_FOOTBALL_MATCHDAYS_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_MATCHDAYS_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_MATCHDAYS')), 'manage' => array('title' => 'ACP_FOOTBALL_MATCHDAYS_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_MATCHDAYS')),
), ),
); );
} }
} }

View File

@@ -56,7 +56,7 @@ class matchdays_module
$form_key = 'acp_football_matchdays'; $form_key = 'acp_football_matchdays';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : ''; $action = (isset($_POST['add'])) ? 'add' : '';
@@ -216,7 +216,7 @@ class matchdays_module
$show_delivery_select = false; $show_delivery_select = false;
$show_delivery = true; $show_delivery = true;
$lang_dates = $user->lang['datetime']; $lang_dates = $user->lang['datetime'];
$sql = "(SELECT md.matchday, $sql = "(SELECT md.matchday AS matchday,
1 AS number, 1 AS number,
md.delivery_date, md.delivery_date,
CASE DATE_FORMAT(md.delivery_date,'%w') CASE DATE_FORMAT(md.delivery_date,'%w')
@@ -251,7 +251,7 @@ class matchdays_module
AND md.league = agg.league AND md.league = agg.league
AND md.matchday = agg.matchday) AND md.matchday = agg.matchday)
UNION UNION
(SELECT md2.matchday, (SELECT md2.matchday AS matchday,
2 AS number, 2 AS number,
md2.delivery_date_2 AS delivery_date, md2.delivery_date_2 AS delivery_date,
CASE DATE_FORMAT(md2.delivery_date_2,'%w') CASE DATE_FORMAT(md2.delivery_date_2,'%w')
@@ -286,7 +286,7 @@ class matchdays_module
AND md2.league = agg2.league AND md2.league = agg2.league
AND md2.matchday = agg2.matchday) AND md2.matchday = agg2.matchday)
UNION UNION
(SELECT md3.matchday, (SELECT md3.matchday AS matchday,
3 AS number, 3 AS number,
md3.delivery_date_3 AS delivery_date, md3.delivery_date_3 AS delivery_date,
CASE DATE_FORMAT(md3.delivery_date_3,'%w') CASE DATE_FORMAT(md3.delivery_date_3,'%w')
@@ -1090,7 +1090,7 @@ class matchdays_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_LEAGUE' => $league, 'S_LEAGUE' => $league,
'S_SEASON_OPTIONS' => $season_options, 'S_SEASON_OPTIONS' => $season_options,
@@ -1131,4 +1131,3 @@ class matchdays_module
} }
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class matches_info class matches_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\matches_module', 'filename' => '\football\football\acp\matches_module',
'title' => 'ACP_FOOTBALL_MATCHES_MANAGEMENT', 'title' => 'ACP_FOOTBALL_MATCHES_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_MATCHES_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_MATCHES')), 'manage' => array('title' => 'ACP_FOOTBALL_MATCHES_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_MATCHES')),
), ),
); );
} }
} }

View File

@@ -56,7 +56,7 @@ class matches_module
$form_key = 'acp_football_matches'; $form_key = 'acp_football_matches';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : $this->request->variable('action', ''); $action = (isset($_POST['add'])) ? 'add' : $this->request->variable('action', '');
@@ -124,12 +124,12 @@ class matches_module
$league_options .= '<option value="' . $row['league'] . '"' . $selected . '>' . $row['league_name'] . '</option>'; $league_options .= '<option value="' . $row['league'] . '"' . $selected . '>' . $row['league_name'] . '</option>';
if ($selected <> '') if ($selected <> '')
{ {
$league_info = $row; $league_info = $row;
$league_matchdays = $row['matchdays']; $league_matchdays = $row['matchdays'];
$matches_matchday = $row['matches_on_matchday']; $matches_matchday = $row['matches_on_matchday'];
$league_name = $row['league_name']; $league_name = $row['league_name'];
$league_type = $row['league_type']; $league_type = $row['league_type'];
$ko_league = ($row['league_type'] == LEAGUE_KO) ? true : false; $ko_league = ($row['league_type'] == LEAGUE_KO) ? true : false;
} }
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -387,19 +387,19 @@ class matches_module
trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action . "&amp;s=$season&amp;l=$league&amp;m=$matchday"), E_USER_WARNING); trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action . "&amp;s=$season&amp;l=$league&amp;m=$matchday"), E_USER_WARNING);
} }
$match_row['status'] = utf8_normalize_nfc($this->request->variable('match_status', '', true)); $match_row['status'] = utf8_normalize_nfc($this->request->variable('match_status', '', true));
$match_row['odd_1'] = round($this->request->variable('odd_1', $match_row['odd_1']),2); $match_row['odd_1'] = round($this->request->variable('odd_1', $match_row['odd_1']),2);
$match_row['odd_x'] = round($this->request->variable('odd_x', $match_row['odd_x']),2); $match_row['odd_x'] = round($this->request->variable('odd_x', $match_row['odd_x']),2);
$match_row['odd_2'] = round($this->request->variable('odd_2', $match_row['odd_2']),2); $match_row['odd_2'] = round($this->request->variable('odd_2', $match_row['odd_2']),2);
$match_row['rating'] = round($this->request->variable('rating', $match_row['rating']),2); $match_row['rating'] = round($this->request->variable('rating', $match_row['rating']),2);
$match_row['team_id_home'] = utf8_normalize_nfc($this->request->variable('team_home', '', true)); $match_row['team_id_home'] = utf8_normalize_nfc($this->request->variable('team_home', '', true));
$match_row['team_id_guest'] = utf8_normalize_nfc($this->request->variable('team_guest', '', true)); $match_row['team_id_guest'] = utf8_normalize_nfc($this->request->variable('team_guest', '', true));
$match_row['formula_home'] = utf8_normalize_nfc($this->request->variable('formula_home', '', true)); $match_row['formula_home'] = utf8_normalize_nfc($this->request->variable('formula_home', '', true));
$match_row['formula_guest'] = utf8_normalize_nfc($this->request->variable('formula_guest', '', true)); $match_row['formula_guest'] = utf8_normalize_nfc($this->request->variable('formula_guest', '', true));
$match_row['ko_match'] = $this->request->variable('match_ko', false); $match_row['ko_match'] = $this->request->variable('match_ko', false);
$match_row['group_id'] = ($this->request->variable('group_match', false)) ? utf8_normalize_nfc($this->request->variable('match_group', '', true)) : ''; $match_row['group_id'] = ($this->request->variable('group_match', false)) ? utf8_normalize_nfc($this->request->variable('match_group', '', true)) : '';
$match_row['show_table'] = $this->request->variable('show_table', false); $match_row['show_table'] = $this->request->variable('show_table', false);
if ($match_row['team_id_home'] <> '') if ($match_row['team_id_home'] <> '')
{ {
$team_arr = explode(';', $match_row['team_id_home']); $team_arr = explode(';', $match_row['team_id_home']);
@@ -437,15 +437,6 @@ class matches_module
{ {
$error[] = $user->lang['NO_MATCH_BEGIN']; $error[] = $user->lang['NO_MATCH_BEGIN'];
} }
if ($match_row['show_table'] == true)
{
$show_table = '0';
}
else
{
$show_table = '1';
}
if (!sizeof($error)) if (!sizeof($error))
{ {
@@ -469,8 +460,7 @@ class matches_module
'formula_guest' => strlen($match_row['formula_guest']) ? $match_row['formula_guest'] : '', 'formula_guest' => strlen($match_row['formula_guest']) ? $match_row['formula_guest'] : '',
'ko_match' => $match_row['ko_match'] ? $match_row['ko_match'] : 0, 'ko_match' => $match_row['ko_match'] ? $match_row['ko_match'] : 0,
'goals_overtime_home' => (is_numeric($match_row['goals_overtime_home'])) ? $match_row['goals_overtime_home'] : '', 'goals_overtime_home' => (is_numeric($match_row['goals_overtime_home'])) ? $match_row['goals_overtime_home'] : '',
'goals_overtime_guest' => (is_numeric($match_row['goals_overtime_guest'])) ? $match_row['goals_overtime_guest'] : '', 'goals_overtime_guest' => (is_numeric($match_row['goals_overtime_guest'])) ? $match_row['goals_overtime_guest'] : '',
'show_table' => (int) $show_table,
); );
@@ -639,16 +629,6 @@ class matches_module
$team_home_options .= '<option value="' . $row['group_id'] . ';' . $row['team_id'] .'"' . $selected_home . '>' . $row['team_name'] . '</option>'; $team_home_options .= '<option value="' . $row['group_id'] . ';' . $row['team_id'] .'"' . $selected_home . '>' . $row['team_name'] . '</option>';
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
if($match_row['show_table'] == 1)
{
$show_table = false;
}
else
{
$show_table = true;
}
$u_back = $this->u_action . "&amp;s=$season&amp;l=$league&amp;m=$matchday"; $u_back = $this->u_action . "&amp;s=$season&amp;l=$league&amp;m=$matchday";
$template->assign_vars(array( $template->assign_vars(array(
@@ -669,8 +649,7 @@ class matches_module
'MATCH_STATUS' => $match_row['status'], 'MATCH_STATUS' => $match_row['status'],
'STATUS_OPTIONS' => $status_options, 'STATUS_OPTIONS' => $status_options,
'S_GROUP_CHECKED' => (strlen($match_row['group_id']) > 0) ? true : false, 'S_GROUP_CHECKED' => (strlen($match_row['group_id']) > 0) ? true : false,
'MATCH_GROUP' => $match_group, 'MATCH_GROUP' => $match_group,
'S_SHOW_TABLE' => $show_table,
'S_KO_CHECKED' => $match_row['ko_match'], 'S_KO_CHECKED' => $match_row['ko_match'],
'FORMULA_HOME' => $match_row['formula_home'], 'FORMULA_HOME' => $match_row['formula_home'],
'FORMULA_GUEST' => $match_row['formula_guest'], 'FORMULA_GUEST' => $match_row['formula_guest'],
@@ -739,7 +718,7 @@ class matches_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_LEAGUE' => $league, 'S_LEAGUE' => $league,
'S_KO_LEAGUE' => $ko_league, 'S_KO_LEAGUE' => $ko_league,
@@ -783,5 +762,3 @@ class matches_module
} }
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class results_info class results_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\results_module', 'filename' => '\football\football\acp\results_module',
'title' => 'ACP_FOOTBALL_RESULTS_MANAGEMENT', 'title' => 'ACP_FOOTBALL_RESULTS_MANAGEMENT',
'version' => '1.0.0', 'version' => '1.0.0',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_RESULTS_MANAGE', 'auth' => 'acl_a_football_results', 'cat' => array('ACP_FOOTBALL_RESULTS')), 'manage' => array('title' => 'ACP_FOOTBALL_RESULTS_MANAGE', 'auth' => 'acl_a_football_results', 'cat' => array('ACP_FOOTBALL_RESULTS')),
), ),
); );
} }
} }

View File

@@ -60,7 +60,7 @@ class results_module
$form_key = 'acp_football_results'; $form_key = 'acp_football_results';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['edit'])) ? 'edit' : $this->request->variable('action', ''); $action = (isset($_POST['edit'])) ? 'edit' : $this->request->variable('action', '');
@@ -796,7 +796,7 @@ class results_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'results', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'results', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_LEGEND' => $legend, 'S_LEGEND' => $legend,
'S_SUCCESS' => (sizeof($success)) ? true : false, 'S_SUCCESS' => (sizeof($success)) ? true : false,
'SUCCESS_MSG' => (sizeof($success)) ? implode('<br />', $success) : '', 'SUCCESS_MSG' => (sizeof($success)) ? implode('<br />', $success) : '',
@@ -818,5 +818,3 @@ class results_module
); );
} }
} }
?>

View File

@@ -56,7 +56,7 @@ class seasons_module
$form_key = 'acp_football_seasons'; $form_key = 'acp_football_seasons';
add_form_key($form_key); add_form_key($form_key);
include($phpbb_root_path . 'includes/functions_user.' . $phpEx); include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : $this->request->variable('action', ''); $action = (isset($_POST['add'])) ? 'add' : $this->request->variable('action', '');
@@ -335,6 +335,7 @@ class seasons_module
'SEASON_SHORT' => $season_row['season_name_short'], 'SEASON_SHORT' => $season_row['season_name_short'],
'U_BACK' => $u_back, 'U_BACK' => $u_back,
'U_ACTION' => "{$this->u_action}&amp;action=$action&amp;s=$season", 'U_ACTION' => "{$this->u_action}&amp;action=$action&amp;s=$season",
'S_VERSION_NO' => $this->config['football_version'],
) )
); );
return; return;
@@ -343,7 +344,7 @@ class seasons_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet')), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet')),
'S_SEASON_ADD' => true, 'S_SEASON_ADD' => true,
) )
); );
@@ -356,8 +357,8 @@ class seasons_module
COUNT(l.league) AS leagues COUNT(l.league) AS leagues
FROM ' . FOOTB_SEASONS . ' s FROM ' . FOOTB_SEASONS . ' s
LEFT JOIN ' . FOOTB_LEAGUES . ' l on l.season = s.season LEFT JOIN ' . FOOTB_LEAGUES . ' l on l.season = s.season
GROUP BY season GROUP BY s.season
ORDER BY season DESC'; ORDER BY s.season DESC';
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows_seasons = $db->sql_fetchrowset($result); $rows_seasons = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -390,5 +391,3 @@ class seasons_module
} }
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class teams_info class teams_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\teams_module', 'filename' => '\football\football\acp\teams_module',
'title' => 'ACP_FOOTBALL_TEAMS_MANAGEMENT', 'title' => 'ACP_FOOTBALL_TEAMS_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_TEAMS_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_TEAMS')), 'manage' => array('title' => 'ACP_FOOTBALL_TEAMS_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_TEAMS')),
), ),
); );
} }
} }

View File

@@ -56,7 +56,7 @@ class teams_module
$form_key = 'acp_football_teams'; $form_key = 'acp_football_teams';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['add'])) ? 'add' : $this->request->variable('action', ''); $action = (isset($_POST['add'])) ? 'add' : $this->request->variable('action', '');
@@ -177,7 +177,7 @@ class teams_module
$folder = $this->ext_football_path . 'images/flags/'; $folder = $this->ext_football_path . 'images/flags/';
$directory = opendir($folder); $directory = opendir($folder);
$files = array(); $files = array();
while($file = readdir($directory)) while($file = readdir($directory))
{ {
if( !(bool) preg_match('/.+\.(?:jpe?g|gif|png)$/i', $file) ) if( !(bool) preg_match('/.+\.(?:jpe?g|gif|png)$/i', $file) )
{ {
@@ -309,7 +309,7 @@ class teams_module
$folder = $this->ext_football_path . 'images/flags/'; $folder = $this->ext_football_path . 'images/flags/';
$directory = opendir($folder); $directory = opendir($folder);
$files = array(); $files = array();
while($file = readdir($directory)) while($file = readdir($directory))
{ {
if( !(bool) preg_match('/.+\.(?:jpe?g|gif|png)$/i', $file) ) if( !(bool) preg_match('/.+\.(?:jpe?g|gif|png)$/i', $file) )
{ {
@@ -589,7 +589,7 @@ class teams_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league)),
'S_SEASON' => $season, 'S_SEASON' => $season,
'S_LEAGUE' => $league, 'S_LEAGUE' => $league,
'S_KO_LEAGUE' => $ko_league, 'S_KO_LEAGUE' => $ko_league,
@@ -597,6 +597,7 @@ class teams_module
'S_LEAGUE_OPTIONS' => $league_options, 'S_LEAGUE_OPTIONS' => $league_options,
'S_TEAM_OPTIONS' => $team_options, 'S_TEAM_OPTIONS' => $team_options,
'S_TEAM_ADD' => true, 'S_TEAM_ADD' => true,
'S_VERSION_NO' => $this->config['football_version'],
) )
); );
@@ -609,7 +610,7 @@ class teams_module
WHERE t.season = $season WHERE t.season = $season
AND t.league = $league AND t.league = $league
GROUP BY t.team_id GROUP BY t.team_id
ORDER BY team_id ASC"; ORDER BY t.team_id ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows_teams = $db->sql_fetchrowset($result); $rows_teams = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -654,4 +655,3 @@ class teams_module
); );
} }
} }
?>

View File

@@ -1,25 +1,25 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\acp; namespace football\football\acp;
class update_info class update_info
{ {
function module() function module()
{ {
return array( return array(
'filename' => '\football\football\acp\update_module', 'filename' => '\football\football\acp\update_module',
'title' => 'ACP_FOOTBALL_UPDATE_MANAGEMENT', 'title' => 'ACP_FOOTBALL_UPDATE_MANAGEMENT',
'version' => '0.9.4', 'version' => '0.9.4',
'modes' => array( 'modes' => array(
'manage' => array('title' => 'ACP_FOOTBALL_UPDATE_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_UPDATE')), 'manage' => array('title' => 'ACP_FOOTBALL_UPDATE_MANAGE', 'auth' => 'acl_a_football_plan', 'cat' => array('ACP_FOOTBALL_UPDATE')),
), ),
); );
} }
} }

View File

@@ -107,7 +107,7 @@ class update_module
$form_key = 'acp_football_update'; $form_key = 'acp_football_update';
add_form_key($form_key); add_form_key($form_key);
include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); include_once($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
// Check and set some common vars // Check and set some common vars
$action = (isset($_POST['load_xml_season'])) ? 'load_xml_season' : ''; $action = (isset($_POST['load_xml_season'])) ? 'load_xml_season' : '';
@@ -131,7 +131,7 @@ class update_module
$insert_season = $this->request->variable('insert_season', false); $insert_season = $this->request->variable('insert_season', false);
$insert_league = $this->request->variable('insert_league', false); $insert_league = $this->request->variable('insert_league', false);
$list = $this->request->variable('list', false); $list = $this->request->variable('list', false);
$this->xml_ary = unserialize(urldecode($this->request->variable('xml_ary', ''))); $this->xml_ary = json_decode(urldecode($this->request->variable('xml_ary', '')),true);
$display_team_mapping = false; $display_team_mapping = false;
// Clear some vars // Clear some vars
$error = array(); $error = array();
@@ -730,7 +730,7 @@ class update_module
$template->assign_vars(array( $template->assign_vars(array(
'U_ACTION' => $this->u_action, 'U_ACTION' => $this->u_action,
'U_CHOOSE_ACTION' => $this->u_action . "&amp;action=choose", 'U_CHOOSE_ACTION' => $this->u_action . "&amp;action=choose",
'U_FOOTBALL' => $helper->route('football_main_controller',array('side' => 'bet', 's' => $season, 'l' => $league)), 'U_FOOTBALL' => $helper->route('football_football_controller',array('side' => 'bet', 's' => $season, 'l' => $league)),
'S_ERROR' => (sizeof($error)) ? true : false, 'S_ERROR' => (sizeof($error)) ? true : false,
'ERROR_MSG' => (sizeof($error)) ? implode('<br />', $error) : '', 'ERROR_MSG' => (sizeof($error)) ? implode('<br />', $error) : '',
'S_SUCCESS' => (sizeof($success)) ? true : false, 'S_SUCCESS' => (sizeof($success)) ? true : false,
@@ -750,7 +750,7 @@ class update_module
'DO_MATCHES' => ($insert_league) ? sprintf($user->lang['INSERT_MATCHES']) : sprintf($user->lang['UPDATE_MATCHES']), 'DO_MATCHES' => ($insert_league) ? sprintf($user->lang['INSERT_MATCHES']) : sprintf($user->lang['UPDATE_MATCHES']),
'XML_SEASON_URL' => $xml_season_url, 'XML_SEASON_URL' => $xml_season_url,
'XML_LEAGUE_URL' => $xml_league_url, 'XML_LEAGUE_URL' => $xml_league_url,
'XML_ARY' => (sizeof($this->xml_ary)) ? urlencode(serialize($this->xml_ary)) : '', 'XML_ARY' => (is_array($this->xml_ary) && sizeof($this->xml_ary)) ? urlencode(json_encode($this->xml_ary)) : '',
'S_XSEASON_OPTIONS' => $xseason_options, 'S_XSEASON_OPTIONS' => $xseason_options,
'S_XLEAGUE_OPTIONS' => $xleague_options, 'S_XLEAGUE_OPTIONS' => $xleague_options,
'S_XSEASON' => $xseason, 'S_XSEASON' => $xseason,
@@ -851,7 +851,7 @@ class update_module
{ {
$this->xml_ary['footb_teams'][$key]['team_id'] = $team_id_map_ary[$xml_team['team_id']]; $this->xml_ary['footb_teams'][$key]['team_id'] = $team_id_map_ary[$xml_team['team_id']];
} }
usort($this->xml_ary['footb_teams'], 'sort_teams'); usort($this->xml_ary['footb_teams'], array($this, 'sort_teams'));
foreach ($this->xml_ary['footb_matches'] AS $key => $xml_team) foreach ($this->xml_ary['footb_matches'] AS $key => $xml_team)
{ {
@@ -1144,7 +1144,7 @@ class update_module
{ {
if (sizeof($table_row)) if (sizeof($table_row))
{ {
$tpl .= '<input type="hidden" name="row_' . $id . '" value="' . urlencode(serialize($diff)) . '" />'; $tpl .= '<input type="hidden" name="row_' . $id . '" value="' . urlencode(json_encode($diff)) . '" />';
// match status update and database // match status update and database
if (substr($id, 0, 13) == 'FOOTB_MATCHES') if (substr($id, 0, 13) == 'FOOTB_MATCHES')
{ {
@@ -1160,7 +1160,7 @@ class update_module
else else
{ {
// Insert team // Insert team
$tpl .= '<input type="hidden" name="' . $id . '[]" value="' . urlencode(serialize($diff)) . '" />'; $tpl .= '<input type="hidden" name="' . $id . '[]" value="' . urlencode(json_encode($diff)) . '" />';
} }
} }
@@ -1171,7 +1171,7 @@ class update_module
{ {
if (sizeof($table_row)) if (sizeof($table_row))
{ {
$color_open = '<span title= "' . sprintf($user->lang['CURRENT_VALUE']) . ': ' . htmlspecialchars($table_row[$key], ENT_COMPAT, 'UTF-8') . '" style="color: red;">* '; $color_open = '<span title= "' . sprintf($user->lang['CURRENT_VALUE']) . ': ' . utf8_htmlspecialchars($table_row[$key]) . '" style="color: red;">* ';
$color_close = '</span>'; $color_close = '</span>';
} }
else else
@@ -1188,8 +1188,8 @@ class update_module
if (sizeof($order)) if (sizeof($order))
{ {
$value = (substr($key, 0, 7) == 'team_id') ? $value . ' ' . $this->team_ary[$value] : $value; $value = (substr($key, 0, 7) == 'team_id') ? $value . ' ' . $this->team_ary[$value] : $value;
$tpl_ary[$order[$key]] = ($order[$key] % 2) ? $color_open . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . $color_close . '&nbsp;</td>' : $tpl_ary[$order[$key]] = ($order[$key] % 2) ? $color_open . utf8_htmlspecialchars($value) . $color_close . '&nbsp;</td>' :
'<td>' . $color_open . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . $color_close . '<br />'; '<td>' . $color_open . utf8_htmlspecialchars($value) . $color_close . '<br />';
} }
else else
{ {
@@ -1198,14 +1198,14 @@ class update_module
// Write table fields // Write table fields
if (sizeof($table_row)) if (sizeof($table_row))
{ {
$tpl .= '<td title= "' . htmlspecialchars($table_row[$key], ENT_COMPAT, 'UTF-8') . '">' . $tpl .= '<td title= "' . utf8_htmlspecialchars($table_row[$key]) . '">' .
$color_open . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . $color_close . $color_open . utf8_htmlspecialchars($value) . $color_close .
'</td>'; '</td>';
} }
else else
{ {
$tpl .= '<td title= "' . sprintf($user->lang['NEW_TEAM']) . '">' . $tpl .= '<td title= "' . sprintf($user->lang['NEW_TEAM']) . '">' .
$color_open . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . $color_close . $color_open . utf8_htmlspecialchars($value) . $color_close .
'</td>'; '</td>';
} }
} }
@@ -1245,15 +1245,15 @@ class update_module
if (sizeof($order)) if (sizeof($order))
{ {
$value = (substr($key, 0, 7) == 'team_id') ? $value . ' ' . $this->team_ary[$value] : $value; $value = (substr($key, 0, 7) == 'team_id') ? $value . ' ' . $this->team_ary[$value] : $value;
$tpl_ary[$order[$key]] = ($order[$key] % 2) ? htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '&nbsp;</td>' : $tpl_ary[$order[$key]] = ($order[$key] % 2) ? utf8_htmlspecialchars($value) . '&nbsp;</td>' :
'<td>' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '<br />'; '<td>' . utf8_htmlspecialchars($value) . '<br />';
} }
else else
{ {
if ($key <> 'season' and $key <> 'league') if ($key <> 'season' and $key <> 'league')
{ {
// Write XML-table fields // Write XML-table fields
$tpl .= '<td>' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '</td>'; $tpl .= '<td>' . utf8_htmlspecialchars($value) . '</td>';
} }
} }
} }
@@ -1322,7 +1322,7 @@ class update_module
if ($this->request->variable($table . '_' . $row['index_field'], false)) if ($this->request->variable($table . '_' . $row['index_field'], false))
{ {
$diff_ary = unserialize(urldecode($this->request->variable('row_' . $table . '_' . $row['index_field'], ''))); $diff_ary = json_decode(urldecode($this->request->variable('row_' . $table . '_' . $row['index_field'], '')),true);
$sql_ary = array_intersect_ukey($diff_ary, $selected_fields, 'self::key_compare_func'); $sql_ary = array_intersect_ukey($diff_ary, $selected_fields, 'self::key_compare_func');
if ($table == 'FOOTB_MATCHES') if ($table == 'FOOTB_MATCHES')
{ {
@@ -1407,7 +1407,7 @@ class update_module
} }
foreach ($insert_ary AS $insert) foreach ($insert_ary AS $insert)
{ {
$sql_ary = unserialize(urldecode($insert)); $sql_ary = json_decode(urldecode($insert),true);
$sql = 'INSERT INTO ' . $table_name . ' ' . $db->sql_build_array('INSERT', $sql_ary); $sql = 'INSERT INTO ' . $table_name . ' ' . $db->sql_build_array('INSERT', $sql_ary);
$db->sql_query($sql); $db->sql_query($sql);
if ($db->sql_affectedrows()) if ($db->sql_affectedrows())
@@ -1461,4 +1461,3 @@ class update_module
return $selected_fields; return $selected_fields;
} }
} }
?>

View File

@@ -1,65 +1,65 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_TITLE}</h1> <h1>{L_TITLE}</h1>
<p>{L_TITLE_EXPLAIN}</p> <p>{L_TITLE_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<!-- BEGIN mods --> <!-- BEGIN mods -->
<fieldset> <fieldset>
<legend>{L_FOOTBALL_VERSION_CHECK}</legend> <legend>{L_FOOTBALL_VERSION_CHECK}</legend>
<p style="font-weight: bold; color: <!-- IF mods.S_UP_TO_DATE -->#228822<!-- ELSE -->#BC2A4D<!-- ENDIF -->;">{mods.UP_TO_DATE}</p> <p style="font-weight: bold; color: <!-- IF mods.S_UP_TO_DATE -->#228822<!-- ELSE -->#BC2A4D<!-- ENDIF -->;">{mods.UP_TO_DATE}</p>
<dl> <dl>
<dt><label>{L_CURRENT_VERSION}</label></dt> <dt><label>{L_CURRENT_VERSION}</label></dt>
<dd><strong>{mods.CURRENT_VERSION}</strong></dd> <dd><strong>{mods.CURRENT_VERSION}</strong></dd>
</dl> </dl>
<dl> <dl>
<dt><label>{L_LATEST_VERSION}</label></dt> <dt><label>{L_LATEST_VERSION}</label></dt>
<dd><strong>{mods.LATEST_VERSION}</strong></dd> <dd><strong>{mods.LATEST_VERSION}</strong></dd>
</dl> </dl>
<!-- IF not mods.S_UP_TO_DATE --> <!-- IF not mods.S_UP_TO_DATE -->
<dl> <dl>
<dt><label>{L_DOWNLOAD_LATEST}</label></dt> <dt><label>{L_DOWNLOAD_LATEST}</label></dt>
<dd><strong><a href="{mods.DOWNLOAD}">{L_DOWNLOAD} {mods.TITLE} {mods.LATEST_VERSION}</a></strong></dd> <dd><strong><a href="{mods.DOWNLOAD}">{L_DOWNLOAD} {mods.TITLE} {mods.LATEST_VERSION}</a></strong></dd>
</dl> </dl>
<dl> <dl>
<dt><label>{L_ANNOUNCEMENT_TOPIC}</label></dt> <dt><label>{L_ANNOUNCEMENT_TOPIC}</label></dt>
<dd><strong><a href="{mods.ANNOUNCEMENT}">{L_RELEASE_ANNOUNCEMENT}</a></strong></dd> <dd><strong><a href="{mods.ANNOUNCEMENT}">{L_RELEASE_ANNOUNCEMENT}</a></strong></dd>
</dl> </dl>
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<!-- END mods --> <!-- END mods -->
<form id="acp_football" method="post" action="{U_ACTION}"> <form id="acp_football" method="post" action="{U_ACTION}">
<!-- BEGIN options --> <!-- BEGIN options -->
<!-- IF options.S_LEGEND --> <!-- IF options.S_LEGEND -->
<!-- IF not options.S_FIRST_ROW --> <!-- IF not options.S_FIRST_ROW -->
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<fieldset> <fieldset>
<legend>{options.LEGEND}</legend> <legend>{options.LEGEND}</legend>
<!-- ELSE --> <!-- ELSE -->
<dl> <dl>
<dt><label for="{options.KEY}">{options.TITLE}:</label><!-- IF options.S_EXPLAIN --><br /><span>{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> <dt><label for="{options.KEY}">{options.TITLE}:</label><!-- IF options.S_EXPLAIN --><br /><span>{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
<dd>{options.CONTENT}</dd> <dd>{options.CONTENT}</dd>
</dl> </dl>
<!-- ENDIF --> <!-- ENDIF -->
<!-- END options --> <!-- END options -->
<p class="submit-buttons"> <p class="submit-buttons">
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
</p> </p>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,151 +1,151 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_ALL_BETS_VIEW}</h1> <h1>{L_ACP_FOOTBALL_ALL_BETS_VIEW}</h1>
<p>{L_ACP_FOOTBALL_ALL_BETS_VIEW_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_ALL_BETS_VIEW_EXPLAIN}</p>
<h1 style="display:inline;">{L_SELECT_MATCHDAY}:</h1> <h1 style="display:inline;">{L_SELECT_MATCHDAY}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<select name="m" id="match_matchday" onchange="this.form.submit();">{S_MATCHDAY_OPTIONS}</select> <select name="m" id="match_matchday" onchange="this.form.submit();">{S_MATCHDAY_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<fieldset> <fieldset>
<legend>{S_LEGEND}</legend> <legend>{S_LEGEND}</legend>
<!-- IF .pagination --> <!-- IF .pagination -->
<div class="pagination top-pagination"> <div class="pagination top-pagination">
<!-- INCLUDE pagination.html --> <!-- INCLUDE pagination.html -->
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .match_panel --> <!-- IF .match_panel -->
<!-- BEGIN match_panel --> <!-- BEGIN match_panel -->
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th style="text-align: right;"><br/></th> <th style="text-align: right;"><br/></th>
<!-- BEGIN match --> <!-- BEGIN match -->
<th colspan="2">{match_panel.match.HOME_NAME}-<br />{match_panel.match.GUEST_NAME}</th> <th colspan="2">{match_panel.match.HOME_NAME}-<br />{match_panel.match.GUEST_NAME}</th>
<!-- END match --> <!-- END match -->
<!-- IF match_panel.S_TOTAL --> <!-- IF match_panel.S_TOTAL -->
<th style="text-align: center;"></th> <th style="text-align: center;"></th>
<!-- ENDIF --> <!-- ENDIF -->
</tr> </tr>
<tr class="row_result"> <tr class="row_result">
<td title="{L_RESULT_EXPLAIN}" style="text-align: right;"><b>{L_RESULT}</b></td> <td title="{L_RESULT_EXPLAIN}" style="text-align: right;"><b>{L_RESULT}</b></td>
<!-- BEGIN match --> <!-- BEGIN match -->
<td class="td_result {match_panel.match.COLOR_STYLE}">{match_panel.match.RESULT}</td> <td class="td_result {match_panel.match.COLOR_STYLE}">{match_panel.match.RESULT}</td>
<td class="td_pts"></td> <td class="td_pts"></td>
<!-- END match --> <!-- END match -->
<!-- IF match_panel.S_TOTAL --> <!-- IF match_panel.S_TOTAL -->
<td title="{L_TOTAL_EXPLAIN}" style="text-align: center;"><b>{L_TOTAL}</b></td> <td title="{L_TOTAL_EXPLAIN}" style="text-align: center;"><b>{L_TOTAL}</b></td>
<!-- ENDIF --> <!-- ENDIF -->
</tr> </tr>
</thead> </thead>
<!-- BEGIN tendency_footer --> <!-- BEGIN tendency_footer -->
<tfoot> <tfoot>
<tr> <tr>
<td class="td_tendency" style="text-align: right;" title="{L_TEND_TEXT}">{L_TENDENCY}</td> <td class="td_tendency" style="text-align: right;" title="{L_TEND_TEXT}">{L_TENDENCY}</td>
<!-- BEGIN tendency --> <!-- BEGIN tendency -->
<td class="td_tendency" colspan="2"> <td class="td_tendency" colspan="2">
<dfn style="display: none;">{match_panel.tendency_footer.tendency.MATCH_ENTRY}</dfn> <dfn style="display: none;">{match_panel.tendency_footer.tendency.MATCH_ENTRY}</dfn>
{match_panel.tendency_footer.tendency.TENDENCY} {match_panel.tendency_footer.tendency.TENDENCY}
</td> </td>
<!-- END tendency --> <!-- END tendency -->
<!-- IF match_panel.tendency_footer.S_TOTAL --> <!-- IF match_panel.tendency_footer.S_TOTAL -->
<td class="td_pts_total" title="{L_POINTS_TOTAL}"> <td class="td_pts_total" title="{L_POINTS_TOTAL}">
<dfn style="display: none;">{L_POINTS_TOTAL}</dfn> <dfn style="display: none;">{L_POINTS_TOTAL}</dfn>
{match_panel.tendency_footer.SUMTOTAL} {match_panel.tendency_footer.SUMTOTAL}
</td> </td>
<!-- ENDIF --> <!-- ENDIF -->
</tr> </tr>
</tfoot> </tfoot>
<!-- END tendency_footer --> <!-- END tendency_footer -->
<tbody> <tbody>
<!-- BEGIN user_row --> <!-- BEGIN user_row -->
<tr class="{match_panel.user_row.ROW_CLASS}"> <tr class="{match_panel.user_row.ROW_CLASS}">
<td class="td_name">{match_panel.user_row.USER_NAME}</td> <td class="td_name">{match_panel.user_row.USER_NAME}</td>
<!-- BEGIN bet --> <!-- BEGIN bet -->
<td class="td_result">{match_panel.user_row.bet.BET}</td> <td class="td_result">{match_panel.user_row.bet.BET}</td>
<td class="{match_panel.bet.COLOR_STYLE}">{match_panel.user_row.bet.POINTS}</td> <td class="{match_panel.bet.COLOR_STYLE}">{match_panel.user_row.bet.POINTS}</td>
<!-- END bet --> <!-- END bet -->
<!-- BEGIN points --> <!-- BEGIN points -->
<td class="td_pts_total {match_panel.points.COLOR_STYLE}">{match_panel.user_row.points.POINTS_TOTAL}</td> <td class="td_pts_total {match_panel.points.COLOR_STYLE}">{match_panel.user_row.points.POINTS_TOTAL}</td>
<!-- END points --> <!-- END points -->
</tr> </tr>
<!-- END user_row --> <!-- END user_row -->
</tbody> </tbody>
</table> </table>
<!-- END match_panel --> <!-- END match_panel -->
<!-- BEGIN extra_panel --> <!-- BEGIN extra_panel -->
<br /> <br />
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th style="text-align:left;">{L_EXTRA_BET}</th> <th style="text-align:left;">{L_EXTRA_BET}</th>
<th style="width:70%; text-align:left;">{extra_panel.QUESTION}</th> <th style="width:70%; text-align:left;">{extra_panel.QUESTION}</th>
<th>{L_EVALUATION}</th> <th>{L_EVALUATION}</th>
<th>{L_POINTS}</th> <th>{L_POINTS}</th>
</tr> </tr>
<tr class="row_result"> <tr class="row_result">
<td><b>{L_RESULT}</b></td> <td><b>{L_RESULT}</b></td>
<td style="text-align:left;" class="{extra_panel.COLOR_STYLE}">{extra_panel.RESULT}</td> <td style="text-align:left;" class="{extra_panel.COLOR_STYLE}">{extra_panel.RESULT}</td>
<td style="text-align:center;">{extra_panel.EVALUATION}</td> <td style="text-align:center;">{extra_panel.EVALUATION}</td>
<td style="text-align:center;" title="{extra_panel.EVALUATION_TITLE}">{extra_panel.POINTS}</td> <td style="text-align:center;" title="{extra_panel.EVALUATION_TITLE}">{extra_panel.POINTS}</td>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN user_row --> <!-- BEGIN user_row -->
<tr class="{extra_panel.user_row.ROW_CLASS}"> <tr class="{extra_panel.user_row.ROW_CLASS}">
<td class="td_name">{extra_panel.user_row.USER_NAME}</td> <td class="td_name">{extra_panel.user_row.USER_NAME}</td>
<td style="text-align:left;">{extra_panel.user_row.BET}</td> <td style="text-align:left;">{extra_panel.user_row.BET}</td>
<td>&nbsp;</td> <td>&nbsp;</td>
<td style="text-align:center;" class="{extra_panel.bet.COLOR_STYLE}">{extra_panel.user_row.POINTS}</td> <td style="text-align:center;" class="{extra_panel.bet.COLOR_STYLE}">{extra_panel.user_row.POINTS}</td>
</tr> </tr>
<!-- END user_row --> <!-- END user_row -->
</tbody> </tbody>
</table> </table>
<!-- IF S_VIEW == 'print' --> <!-- IF S_VIEW == 'print' -->
<br /> <br />
<!-- ENDIF --> <!-- ENDIF -->
<!-- END extra_panel --> <!-- END extra_panel -->
<!-- IF .pagination or TOTAL_USERS --> <!-- IF .pagination or TOTAL_USERS -->
<div class="pagination"> <div class="pagination">
{TOTAL_USERS} {TOTAL_USERS}
<!-- IF .pagination --> <!-- IF .pagination -->
<!-- INCLUDE pagination.html --> <!-- INCLUDE pagination.html -->
<!-- ELSE --> <!-- ELSE -->
&bull; {PAGE_NUMBER} &bull; {PAGE_NUMBER}
<!-- ENDIF --> <!-- ENDIF -->
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<!-- ELSE --> <!-- ELSE -->
<br /> <br />
<div class="message">{L_NO_MATCHES_ON_MATCHDAY}</div> <div class="message">{L_NO_MATCHES_ON_MATCHDAY}</div>
<br /> <br />
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,160 +1,160 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF S_LIST --> <!-- IF S_LIST -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a> <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
<h1>{PAGE_TYPE} :: {LEAGUE_NAME}</h1> <h1>{PAGE_TYPE} :: {LEAGUE_NAME}</h1>
<p>{PAGE_TYPE_EXPLAIN}</p> <p>{PAGE_TYPE_EXPLAIN}</p>
<form id="list" method="post" action="{U_ACTION}"> <form id="list" method="post" action="{U_ACTION}">
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="setvalues('list', 'newvalue', 'curvalue', {BET_POINTS}); return false;">{L_SET_DEPOSITS}</a> &bull; <a href="#" onclick="setvalues('list', 'newvalue', 'curvalue', {BET_POINTS}); return false;">{L_SET_DEPOSITS}</a> &bull;
<a href="#" onclick="marklist('list', 'mark', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'mark', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'mark', false); return false;">{L_UNMARK_ALL}</a></p> <a href="#" onclick="marklist('list', 'mark', false); return false;">{L_UNMARK_ALL}</a></p>
<!-- IF .pagination --> <!-- IF .pagination -->
<div class="pagination top-pagination"> <div class="pagination top-pagination">
<!-- INCLUDE pagination.html --> <!-- INCLUDE pagination.html -->
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>
<!-- IF POINTS --> <!-- IF POINTS -->
<th>{POINTS}</th> <th>{POINTS}</th>
<!-- ENDIF --> <!-- ENDIF -->
<th>{TARGET}</th> <th>{TARGET}</th>
<th>{ACTUAL}</th> <th>{ACTUAL}</th>
<th>{L_BOOK}</th> <th>{L_BOOK}</th>
<th>{L_MARK}</th> <th>{L_MARK}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN member --> <!-- BEGIN member -->
<!-- IF member.S_ROW_COUNT is even --><tr class="bg1 row_light"><!-- ELSE --><tr class="bg2 row_dark"><!-- ENDIF --> <!-- IF member.S_ROW_COUNT is even --><tr class="bg1 row_light"><!-- ELSE --><tr class="bg2 row_dark"><!-- ENDIF -->
<td><a href="{member.U_USER_BANK}">{member.USERNAME}</a></td> <td><a href="{member.U_USER_BANK}">{member.USERNAME}</a></td>
<!-- IF POINTS --> <!-- IF POINTS -->
<td style="text-align: right;">{member.POINTS}</td> <td style="text-align: right;">{member.POINTS}</td>
<!-- ENDIF --> <!-- ENDIF -->
<td style="text-align: right;">{member.TARGET}</td> <td style="text-align: right;">{member.TARGET}</td>
<td style="text-align: right;">{member.ACTUAL}<input type="hidden" name="curvalue{member.USER_ID}" id="curvalue{member.USER_ID}" value="{member.ACTUAL}" /></td> <td style="text-align: right;">{member.ACTUAL}<input type="hidden" name="curvalue{member.USER_ID}" id="curvalue{member.USER_ID}" value="{member.ACTUAL}" /></td>
<td style="text-align: right;"><input type="text" name="newvalue{member.USER_ID}" value="{member.NEW_VALUE}" <td style="text-align: right;"><input type="text" name="newvalue{member.USER_ID}" value="{member.NEW_VALUE}"
onchange="document.getElementById('select_{member.USER_ID}').checked = true;" /></td> onchange="document.getElementById('select_{member.USER_ID}').checked = true;" /></td>
<td style="text-align: center;"><input type="checkbox" class="radio" name="mark[]" id="select_{member.USER_ID}" value="{member.USER_ID}" /></td> <td style="text-align: center;"><input type="checkbox" class="radio" name="mark[]" id="select_{member.USER_ID}" value="{member.USER_ID}" /></td>
</tr> </tr>
<!-- END member --> <!-- END member -->
</tbody> </tbody>
</table> </table>
<!-- IF S_CASH_POINTS --> <!-- IF S_CASH_POINTS -->
{L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" checked="checked" /> {L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
{L_MATCHDAY}: <!-- IF S_SELECT_MATCHDAY --><input type="text" name="m" value="{S_MATCHDAY}" /><!-- ELSE --> {L_MATCHDAY}: <!-- IF S_SELECT_MATCHDAY --><input type="text" name="m" value="{S_MATCHDAY}" /><!-- ELSE -->
<input type="hidden" name="m" value="{S_MATCHDAY}" />{S_MATCHDAY}<!-- ENDIF --> <input type="hidden" name="m" value="{S_MATCHDAY}" />{S_MATCHDAY}<!-- ENDIF -->
<!-- IF .pagination or TOTAL_MEMBERS --> <!-- IF .pagination or TOTAL_MEMBERS -->
<div class="pagination"> <div class="pagination">
{TOTAL_MEMBERS} {TOTAL_MEMBERS}
<!-- IF .pagination --> <!-- IF .pagination -->
<!-- INCLUDE pagination.html --> <!-- INCLUDE pagination.html -->
<!-- ELSE --> <!-- ELSE -->
&bull; {PAGE_NUMBER} &bull; {PAGE_NUMBER}
<!-- ENDIF --> <!-- ENDIF -->
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<fieldset class="quick"> <fieldset class="quick">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="t" value="{S_TYPE}" /> <input type="hidden" name="t" value="{S_TYPE}" />
<input type="hidden" name="start" value="{S_START}" /> <input type="hidden" name="start" value="{S_START}" />
<select name="action"><option class="sep" value="">{L_SELECT_OPTION}</option>{S_ACTION_OPTIONS}</select> <select name="action"><option class="sep" value="">{L_SELECT_OPTION}</option>{S_ACTION_OPTIONS}</select>
<input class="button2" type="submit" name="update" value="{L_SUBMIT}" /> <input class="button2" type="submit" name="update" value="{L_SUBMIT}" />
</fieldset> </fieldset>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_BANK_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_BANK_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_BANK_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_BANK_MANAGE_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<h1 style="display:inline;">{L_SELECT_SEASON}:</h1> <h1 style="display:inline;">{L_SELECT_SEASON}:</h1>
<select name="s" id="bank_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="bank_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<h1>{L_LEAGUE_BANK}</h1> <h1>{L_LEAGUE_BANK}</h1>
<p>{L_LEAGUE_BANK_EXPLAIN}</p> <p>{L_LEAGUE_BANK_EXPLAIN}</p>
<p><a href="{U_DLOAD_BANK_OPEN}">Offene Posten bis einschließlich dieser Saison</a></p> <p><a href="{U_DLOAD_BANK_OPEN}">Offene Posten bis einschließlich dieser Saison</a></p>
<form id="overview" method="post" action="{U_ACTION}"> <form id="overview" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('overview', 'markleague', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('overview', 'markleague', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('overview', 'markleague', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('overview', 'markleague', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_LEAGUE}</th> <th>{L_LEAGUE}</th>
<th style="width: 25%">{L_LEAGUE_NAME}</th> <th style="width: 25%">{L_LEAGUE_NAME}</th>
<th>{L_BET_POINTS}</th> <th>{L_BET_POINTS}</th>
<th>{L_DEPOSITED}</th> <th>{L_DEPOSITED}</th>
<th>{L_WINS}</th> <th>{L_WINS}</th>
<th>{L_PAID}</th> <th>{L_PAID}</th>
<th>{L_MARK}</th> <th>{L_MARK}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- IF .leagues --> <!-- IF .leagues -->
<!-- BEGIN leagues --> <!-- BEGIN leagues -->
<!-- IF leagues.S_ROW_COUNT is even --><tr class="bg1 row_light"><!-- ELSE --><tr class="bg2 row_dark"><!-- ENDIF --> <!-- IF leagues.S_ROW_COUNT is even --><tr class="bg1 row_light"><!-- ELSE --><tr class="bg2 row_dark"><!-- ENDIF -->
<td style="text-align: center;"><strong>{leagues.LEAGUE}</strong></td> <td style="text-align: center;"><strong>{leagues.LEAGUE}</strong></td>
<td><a href="{leagues.U_DLOAD_BANK}">{leagues.LEAGUE_NAME}</a></td> <td><a href="{leagues.U_DLOAD_BANK}">{leagues.LEAGUE_NAME}</a></td>
<td style="text-align: right;"><a href="{leagues.U_LIST_BET_POINTS}">{leagues.BET_POINTS}</a></td> <td style="text-align: right;"><a href="{leagues.U_LIST_BET_POINTS}">{leagues.BET_POINTS}</a></td>
<td style="text-align: right;"> <td style="text-align: right;">
<!-- IF S_LIST_DEPOSITED --><a href="{leagues.U_LIST_DEPOSITED}"><!-- ENDIF --> <!-- IF S_LIST_DEPOSITED --><a href="{leagues.U_LIST_DEPOSITED}"><!-- ENDIF -->
{leagues.DEPOSITED} {leagues.DEPOSITED}
<!-- IF S_LIST_DEPOSITED --></a><!-- ENDIF --></td> <!-- IF S_LIST_DEPOSITED --></a><!-- ENDIF --></td>
<td style="text-align: right;">{leagues.WINS}</td> <td style="text-align: right;">{leagues.WINS}</td>
<td style="text-align: right;"> <td style="text-align: right;">
<!-- IF S_LIST_PAID --><a href="{leagues.U_LIST_PAID}"><!-- ENDIF --> <!-- IF S_LIST_PAID --><a href="{leagues.U_LIST_PAID}"><!-- ENDIF -->
{leagues.PAID} {leagues.PAID}
<!-- IF S_LIST_PAID --></a><!-- ENDIF --></td> <!-- IF S_LIST_PAID --></a><!-- ENDIF --></td>
<td style="text-align: center;"><input type="checkbox" class="radio" name="markleague[]" value="{leagues.LEAGUE}" /></td> <td style="text-align: center;"><input type="checkbox" class="radio" name="markleague[]" value="{leagues.LEAGUE}" /></td>
</tr> </tr>
<!-- END leagues --> <!-- END leagues -->
<!-- ELSE --> <!-- ELSE -->
<tr> <tr>
<td colspan="3" class="row3">{L_NO_LEAGUES_CREATED}</td> <td colspan="3" class="row3">{L_NO_LEAGUES_CREATED}</td>
</tr> </tr>
<!-- ENDIF --> <!-- ENDIF -->
</tbody> </tbody>
</table> </table>
<!-- IF S_CASH_POINTS --> <!-- IF S_CASH_POINTS -->
{L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" checked="checked" /> {L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
<fieldset class="quick"> <fieldset class="quick">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="action"><option class="sep" value="">{L_SELECT_OPTION}</option>{S_LEAGUE_ACTION_OPTIONS}</select> <select name="action"><option class="sep" value="">{L_SELECT_OPTION}</option>{S_LEAGUE_ACTION_OPTIONS}</select>
<input class="button2" type="submit" name="update" value="{L_SUBMIT}" /> <input class="button2" type="submit" name="update" value="{L_SUBMIT}" />
</fieldset> </fieldset>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form><!-- ENDIF --> </form><!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,155 +1,155 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_BETS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_BETS_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_BETS_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_BETS_MANAGE_EXPLAIN}</p>
<h1 style="display:inline;">{L_SELECT_MATCHDAY}:</h1> <h1 style="display:inline;">{L_SELECT_MATCHDAY}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<select name="m" id="match_matchday" onchange="this.form.submit();">{S_MATCHDAY_OPTIONS}</select> <select name="m" id="match_matchday" onchange="this.form.submit();">{S_MATCHDAY_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<!-- IF S_USERS --> <!-- IF S_USERS -->
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="m" value="{S_MATCHDAY}" /> <input type="hidden" name="m" value="{S_MATCHDAY}" />
<select name="u" id="match_user" onchange="this.form.submit();">{S_USER_OPTIONS}</select> <select name="u" id="match_user" onchange="this.form.submit();">{S_USER_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_SUCCESS --> <!-- IF S_SUCCESS -->
<div class="successbox"> <div class="successbox">
<h3>{L_ADVICE}</h3> <h3>{L_ADVICE}</h3>
<p>{SUCCESS_MSG}</p> <p>{SUCCESS_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .bet_edit --> <!-- IF .bet_edit -->
<form method="post" action="{U_ACTION}"> <form method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{S_LEGEND}</legend> <legend>{S_LEGEND}</legend>
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="m" value="{S_MATCHDAY}" /> <input type="hidden" name="m" value="{S_MATCHDAY}" />
<input type="hidden" name="u" value="{S_USER}" /> <input type="hidden" name="u" value="{S_USER}" />
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_DATE}</th> <th>{L_DATE}</th>
<th style="text-align:right">{L_NR}</th> <th style="text-align:right">{L_NR}</th>
<!-- IF S_DATA_GROUP --> <!-- IF S_DATA_GROUP -->
<th>{L_GR}</th> <th>{L_GR}</th>
<!-- ENDIF --> <!-- ENDIF -->
<th></th> <th></th>
<th>{L_HOME}</th> <th>{L_HOME}</th>
<th></th> <th></th>
<th></th> <th></th>
<th>{L_GUEST}</th> <th>{L_GUEST}</th>
<th style="text-align:right">{L_GOALS_HOME}</th> <th style="text-align:right">{L_GOALS_HOME}</th>
<th></th> <th></th>
<th>{L_GOALS_GUEST}</th> <th>{L_GOALS_GUEST}</th>
<th>{L_BET_TIME}</th> <th>{L_BET_TIME}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN bet_edit --> <!-- BEGIN bet_edit -->
<tr class="{bet_edit.ROW_CLASS}"> <tr class="{bet_edit.ROW_CLASS}">
<td>{bet_edit.MATCH_TIME}</td> <td>{bet_edit.MATCH_TIME}</td>
<td class="td_match_no">{bet_edit.MATCH_NUMBER}</td> <td class="td_match_no">{bet_edit.MATCH_NUMBER}</td>
<!-- IF S_DATA_GROUP --> <!-- IF S_DATA_GROUP -->
<td class="td_group">{bet_edit.GROUP}</td> <td class="td_group">{bet_edit.GROUP}</td>
<!-- ENDIF --> <!-- ENDIF -->
<td style="text-align:right; width:32px;">{bet_edit.LOGO_HOME}&nbsp;</td> <td style="text-align:right; width:32px;">{bet_edit.LOGO_HOME}&nbsp;</td>
<td class="td_team">{bet_edit.HOME_NAME}</td> <td class="td_team">{bet_edit.HOME_NAME}</td>
<td class="td_vs">:</td> <td class="td_vs">:</td>
<td style="text-align:right; width:32px;">{bet_edit.LOGO_GUEST}&nbsp;</td> <td style="text-align:right; width:32px;">{bet_edit.LOGO_GUEST}&nbsp;</td>
<td class="td_team">{bet_edit.GUEST_NAME}</td> <td class="td_team">{bet_edit.GUEST_NAME}</td>
<td class="td_goals_home"><input style="text-align:right; width:30px;" type="number" <td class="td_goals_home"><input style="text-align:right; width:30px;" type="number"
name="goalsh{bet_edit.MATCH_NUMBER}" min="0" max="20" size="2" value="{bet_edit.BET_HOME}" /></td> name="goalsh{bet_edit.MATCH_NUMBER}" min="0" max="20" size="2" value="{bet_edit.BET_HOME}" /></td>
<td class="td_vs">:</td> <td class="td_vs">:</td>
<td class="td_goals_guest"><input style="margin:0; width:30px;" type="number" <td class="td_goals_guest"><input style="margin:0; width:30px;" type="number"
name="goalsg{bet_edit.MATCH_NUMBER}" min="0" max="20" size="2" value="{bet_edit.BET_GUEST}" /></td> name="goalsg{bet_edit.MATCH_NUMBER}" min="0" max="20" size="2" value="{bet_edit.BET_GUEST}" /></td>
<td>{bet_edit.BET_TIME}</td> <td>{bet_edit.BET_TIME}</td>
</tr> </tr>
<!-- END bet_edit --> <!-- END bet_edit -->
</tbody> </tbody>
</table> </table>
<!-- IF S_EXTRA_BET --> <!-- IF S_EXTRA_BET -->
<br /> <br />
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th style="text-align: left;">{L_QUESTION}</th> <th style="text-align: left;">{L_QUESTION}</th>
<th>{L_POSSIBLE_POINTS}</th> <th>{L_POSSIBLE_POINTS}</th>
<th>{L_EVALUATION}</th> <th>{L_EVALUATION}</th>
<th>{L_BET_OF}</th> <th>{L_BET_OF}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN extra_edit --> <!-- BEGIN extra_edit -->
<tr class="{extra_edit.ROW_CLASS}" style="height:30px"> <tr class="{extra_edit.ROW_CLASS}" style="height:30px">
<td>{extra_edit.QUESTION}</td> <td>{extra_edit.QUESTION}</td>
<td style="text-align: center;">{extra_edit.EXTRA_POINTS}</td> <td style="text-align: center;">{extra_edit.EXTRA_POINTS}</td>
<td style="text-align: center;" title="{extra_edit.EVALUATION_TITLE}">{extra_edit.EVALUATION}</td> <td style="text-align: center;" title="{extra_edit.EVALUATION_TITLE}">{extra_edit.EVALUATION}</td>
<td style="text-align: center;"> <td style="text-align: center;">
<!-- IF extra_edit.S_DISPLAY_TYPE == 1 --> <!-- IF extra_edit.S_DISPLAY_TYPE == 1 -->
<select name="extra{extra_edit.EXTRA_NO}"> <select name="extra{extra_edit.EXTRA_NO}">
<!-- BEGIN extra_option --> <!-- BEGIN extra_option -->
<option {extra_edit.extra_option.S_SELECTED} value="{extra_edit.extra_option.OPTION_VALUE}">{extra_edit.extra_option.OPTION_NAME}</option> <option {extra_edit.extra_option.S_SELECTED} value="{extra_edit.extra_option.OPTION_VALUE}">{extra_edit.extra_option.OPTION_NAME}</option>
<!-- END extra_option --> <!-- END extra_option -->
</select> </select>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF extra_edit.S_DISPLAY_TYPE == 2 --> <!-- IF extra_edit.S_DISPLAY_TYPE == 2 -->
<input style="display:inline; margin:0; padding:0;" type="text" name="extra{extra_edit.EXTRA_NO}" size="15" maxlength="255" value="{extra_edit.BET}"> <input style="display:inline; margin:0; padding:0;" type="text" name="extra{extra_edit.EXTRA_NO}" size="15" maxlength="255" value="{extra_edit.BET}">
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
</tr> </tr>
<!-- END extra_edit --> <!-- END extra_edit -->
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_CASH_POINTS -->{L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" checked="checked" /> <!-- ENDIF --> <!-- IF S_CASH_POINTS -->{L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" checked="checked" /> <!-- ENDIF -->
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<input class="button1" type="submit" id="submit" name="bet" value="{L_SAVE}" />&nbsp; <input class="button1" type="submit" id="submit" name="bet" value="{L_SAVE}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<fieldset> <fieldset>
<legend>{S_LEGEND}</legend> <legend>{S_LEGEND}</legend>
<br /> <br />
<div class="message"><!-- IF S_USERS -->{L_NO_MATCHES_ON_MATCHDAY}<!-- ELSE -->{L_NO_USERS}<!-- ENDIF --></div> <div class="message"><!-- IF S_USERS -->{L_NO_MATCHES_ON_MATCHDAY}<!-- ELSE -->{L_NO_USERS}<!-- ENDIF --></div>
<br /> <br />
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,149 +1,149 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF S_EDIT --> <!-- IF S_EDIT -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a> <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
<h1>{L_ACP_FOOTBALL_EXTRA_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_EXTRA_MANAGE}</h1>
<p>{L_MATCHDAY_EDIT_EXPLAIN}</p> <p>{L_MATCHDAY_EDIT_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="settings" method="post" action="{U_ACTION}"> <form id="settings" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_EXTRA_DETAILS}</legend> <legend>{L_EXTRA_DETAILS}</legend>
<dl> <dl>
<dt><label for="season">{L_SEASON}:</label></dt> <dt><label for="season">{L_SEASON}:</label></dt>
<dd><strong>{SEASON_NAME}</strong><input name="s" type="hidden" id="season" value="{SEASON}" /></dd> <dd><strong>{SEASON_NAME}</strong><input name="s" type="hidden" id="season" value="{SEASON}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="league">{L_LEAGUE}:</label></dt> <dt><label for="league">{L_LEAGUE}:</label></dt>
<dd><strong>{LEAGUE_NAME}</strong><input name="l" type="hidden" id="league" value="{LEAGUE}" /></dd> <dd><strong>{LEAGUE_NAME}</strong><input name="l" type="hidden" id="league" value="{LEAGUE}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="extra_no">{L_EXTRA_NO}:</label></dt> <dt><label for="extra_no">{L_EXTRA_NO}:</label></dt>
<dd><strong>{EXTRA_NO}</strong><input name="e" type="hidden" id="extra_no" value="{EXTRA_NO}" /></dd> <dd><strong>{EXTRA_NO}</strong><input name="e" type="hidden" id="extra_no" value="{EXTRA_NO}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="question_type">{L_EXTRA_QUESTION_TYPE}:</label><br /><span>{L_EXTRA_QUESTION_TYPE_EXPLAIN}</span></dt> <dt><label for="question_type">{L_EXTRA_QUESTION_TYPE}:</label><br /><span>{L_EXTRA_QUESTION_TYPE_EXPLAIN}</span></dt>
<dd><select id="question_type" name="question_type">{S_QUESTION_TYPE_OPTIONS}</select> </dd> <dd><select id="question_type" name="question_type">{S_QUESTION_TYPE_OPTIONS}</select> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="question">{L_EXTRA_QUESTION}:</label><br /><span>{L_EXTRA_QUESTION_EXPLAIN}</span></dt> <dt><label for="question">{L_EXTRA_QUESTION}:</label><br /><span>{L_EXTRA_QUESTION_EXPLAIN}</span></dt>
<dd><input name="question" type="text" id="question" size="80" maxlength="255" value="{QUESTION}" /></dd> <dd><input name="question" type="text" id="question" size="80" maxlength="255" value="{QUESTION}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday">{L_EXTRA_MATCHDAY}:</label><br /><span>{L_EXTRA_MATCHDAY_EXPLAIN}</span></dt> <dt><label for="matchday">{L_EXTRA_MATCHDAY}:</label><br /><span>{L_EXTRA_MATCHDAY_EXPLAIN}</span></dt>
<dd><select id="matchday" name="matchday">{S_MATCHDAY_OPTIONS}</select> </dd> <dd><select id="matchday" name="matchday">{S_MATCHDAY_OPTIONS}</select> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday_eval">{L_EXTRA_MATCHDAY_EVAL}:</label><br /><span>{L_EXTRA_MATCHDAY_EVAL_EXPLAIN}</span></dt> <dt><label for="matchday_eval">{L_EXTRA_MATCHDAY_EVAL}:</label><br /><span>{L_EXTRA_MATCHDAY_EVAL_EXPLAIN}</span></dt>
<dd><select id="matchday_eval" name="matchday_eval">{S_MATCHDAY_EVAL_OPTIONS}</select> </dd> <dd><select id="matchday_eval" name="matchday_eval">{S_MATCHDAY_EVAL_OPTIONS}</select> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="extra_points">{L_EXTRA_POINTS}:</label><br /><span>{L_EXTRA_POINTS_EXPLAIN}</span></dt> <dt><label for="extra_points">{L_EXTRA_POINTS}:</label><br /><span>{L_EXTRA_POINTS_EXPLAIN}</span></dt>
<dd><input name="extra_points" type="text" id="extra_points" size="2" maxlength="2" value="{EXTRA_POINTS}" /></dd> <dd><input name="extra_points" type="text" id="extra_points" size="2" maxlength="2" value="{EXTRA_POINTS}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="extra_status">{L_EXTRA_STATUS}:</label><br /><span>{L_EXTRA_STATUS_EXPLAIN}</span></dt> <dt><label for="extra_status">{L_EXTRA_STATUS}:</label><br /><span>{L_EXTRA_STATUS_EXPLAIN}</span></dt>
<dd><select id="extra_status" name="extra_status">{S_EXTRA_STATUS_OPTIONS}</select></dd> <dd><select id="extra_status" name="extra_status">{S_EXTRA_STATUS_OPTIONS}</select></dd>
</dl> </dl>
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_EXTRA_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_EXTRA_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_EXTRA_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_EXTRA_MANAGE_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1> <h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="matchday_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="matchday_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="matchday_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="matchday_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form id="add_extra" method="post" action="{U_ACTION}"> <form id="add_extra" method="post" action="{U_ACTION}">
<fieldset class="quick"> <fieldset class="quick">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<!-- IF S_EXTRA_ADD --> <!-- IF S_EXTRA_ADD -->
<input class="button2" type="submit" name="submit" value="{L_EXTRA_ADD}" /> <input class="button2" type="submit" name="submit" value="{L_EXTRA_ADD}" />
<input type="hidden" name="add" value="1" /> <input type="hidden" name="add" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<h1>{L_EXTRA_DEF}</h1> <h1>{L_EXTRA_DEF}</h1>
<p>{L_EXTRA_DEF_EXPLAIN}</p> <p>{L_EXTRA_DEF_EXPLAIN}</p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_EXTRA_NO}</th> <th>{L_EXTRA_NO}</th>
<th>{L_QUESTION_TYPE}</th> <th>{L_QUESTION_TYPE}</th>
<th style="width: 40%">{L_EXTRA_QUESTION}</th> <th style="width: 40%">{L_EXTRA_QUESTION}</th>
<th>{L_EXTRA_MATCHDAY}</th> <th>{L_EXTRA_MATCHDAY}</th>
<th>{L_EXTRA_MATCHDAY_EVAL}</th> <th>{L_EXTRA_MATCHDAY_EVAL}</th>
<th>{L_EXTRA_POINTS}</th> <th>{L_EXTRA_POINTS}</th>
<th>{L_STATUS}</th> <th>{L_STATUS}</th>
<th>{L_OPTIONS}</th> <th>{L_OPTIONS}</th>
<th>{L_ACTION}</th> <th>{L_ACTION}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- IF .extras --> <!-- IF .extras -->
<!-- BEGIN extras --> <!-- BEGIN extras -->
<tr class="{extras.ROW_CLASS}"> <tr class="{extras.ROW_CLASS}">
<td style="text-align:center;"><strong>{extras.EXTRA_NO}</strong></td> <td style="text-align:center;"><strong>{extras.EXTRA_NO}</strong></td>
<td style="text-align:center;">{extras.QUESTION_TYPE}</td> <td style="text-align:center;">{extras.QUESTION_TYPE}</td>
<td>{extras.QUESTION}</td> <td>{extras.QUESTION}</td>
<td style="text-align:right;">{extras.MATCHDAY}</td> <td style="text-align:right;">{extras.MATCHDAY}</td>
<td style="text-align:right;">{extras.MATCHDAY_EVAL}</td> <td style="text-align:right;">{extras.MATCHDAY_EVAL}</td>
<td style="text-align:center;">{extras.EXTRA_POINTS}</td> <td style="text-align:center;">{extras.EXTRA_POINTS}</td>
<td style="text-align:center;">{extras.EXTRA_STATUS}</td> <td style="text-align:center;">{extras.EXTRA_STATUS}</td>
<td style="text-align: center;"><a href="{extras.U_EDIT}">{L_SETTINGS}</a></td> <td style="text-align: center;"><a href="{extras.U_EDIT}">{L_SETTINGS}</a></td>
<td style="text-align: center;"><!-- IF extras.U_DELETE --><a href="{extras.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td> <td style="text-align: center;"><!-- IF extras.U_DELETE --><a href="{extras.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td>
</tr> </tr>
<!-- END extras --> <!-- END extras -->
<!-- ELSE --> <!-- ELSE -->
<tr> <tr>
<td colspan="9" class="row3">{L_NO_EXTRA_CREATED}</td> <td colspan="9" class="row3">{L_NO_EXTRA_CREATED}</td>
</tr> </tr>
<!-- ENDIF --> <!-- ENDIF -->
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,85 +1,85 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_KO_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_KO_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_KO_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_KO_MANAGE_EXPLAIN}</p>
<h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1> <h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="settings" method="post" action="{U_ACTION}"> <form id="settings" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_KO_MATCHDAYS}</legend> <legend>{L_KO_MATCHDAYS}</legend>
<dl> <dl>
<dt><label for="matchday_from">{L_MATCHDAY_FROM}:</label></dt> <dt><label for="matchday_from">{L_MATCHDAY_FROM}:</label></dt>
<dd><select name="matchday_from" id="matchday_from" >{S_MATCHDAY_FROM_OPTIONS}</select></dd> <dd><select name="matchday_from" id="matchday_from" >{S_MATCHDAY_FROM_OPTIONS}</select></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday_to">{L_MATCHDAY_TO}:</label></dt> <dt><label for="matchday_to">{L_MATCHDAY_TO}:</label></dt>
<dd><select name="matchday_to" id="matchday_to" >{S_MATCHDAY_TO_OPTIONS}</select></dd> <dd><select name="matchday_to" id="matchday_to" >{S_MATCHDAY_TO_OPTIONS}</select></dd>
</dl> </dl>
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
</fieldset> </fieldset>
<fieldset> <fieldset>
<legend>{L_MATCHDAY_TARGET}</legend> <legend>{L_MATCHDAY_TARGET}</legend>
<dl> <dl>
<dt><label for="matchday_new">{L_MATCHDAY_NEW}:</label></dt> <dt><label for="matchday_new">{L_MATCHDAY_NEW}:</label></dt>
<dd><select name="matchday_new" id="matchday_new" >{S_MATCHDAY_NEW_OPTIONS}</select></dd> <dd><select name="matchday_new" id="matchday_new" >{S_MATCHDAY_NEW_OPTIONS}</select></dd>
</dl> </dl>
</fieldset> </fieldset>
<fieldset> <fieldset>
<legend>{L_KO_GROUP}</legend> <legend>{L_KO_GROUP}</legend>
<dl> <dl>
<dt><label for="matchday_new">{L_MANAGE_GROUP}:</label></dt> <dt><label for="matchday_new">{L_MANAGE_GROUP}:</label></dt>
<dd><input name="check_rank" id="check_rank" type="checkbox" value="1" class="radio" <!-- IF S_CHECK_RANK --> checked="checked"<!-- ENDIF --> /></dd> <dd><input name="check_rank" id="check_rank" type="checkbox" value="1" class="radio" <!-- IF S_CHECK_RANK --> checked="checked"<!-- ENDIF --> /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="rank">{L_GROUP_RANK}:</label><br /><span>{L_GROUP_RANK_EXPLAIN}</span></dt> <dt><label for="rank">{L_GROUP_RANK}:</label><br /><span>{L_GROUP_RANK_EXPLAIN}</span></dt>
<dd><input name="rank" type="text" id="rank" value="{S_RANK}" size="1" maxlength="1" /></dd> <dd><input name="rank" type="text" id="rank" value="{S_RANK}" size="1" maxlength="1" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="move_rank">{L_MOVE_RANK}:</label><br /><span>{L_MOVE_RANK_EXPLAIN}</span></dt> <dt><label for="move_rank">{L_MOVE_RANK}:</label><br /><span>{L_MOVE_RANK_EXPLAIN}</span></dt>
<dd><input name="move_rank" type="text" id="move_rank" value="{S_MOVE_RANK}" size="1" maxlength="1" /> <dd><input name="move_rank" type="text" id="move_rank" value="{S_MOVE_RANK}" size="1" maxlength="1" />
{L_MOVE_LEAGUE} {L_MOVE_LEAGUE}
<select name="move_league" id="move_league">{S_MOVE_LEAGUE_OPTIONS}</select> <select name="move_league" id="move_league">{S_MOVE_LEAGUE_OPTIONS}</select>
{L_MATCHDAY} {L_MATCHDAY}
<input name="move_matchday" type="text" id="move_matchday" value="{S_MOVE_MATCHDAY}" size="2" maxlength="2" /> <input name="move_matchday" type="text" id="move_matchday" value="{S_MOVE_MATCHDAY}" size="2" maxlength="2" />
</dd> </dd>
</dl> </dl>
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -33,7 +33,7 @@
</dl> </dl>
<dl> <dl>
<dt><label for="league_name">{L_LEAGUE_NAME}:</label></dt> <dt><label for="league_name">{L_LEAGUE_NAME}:</label></dt>
<dd><input name="league_name" type="text" id="league_name" size="25" maxlength="21" value="{LEAGUE_NAME}" /></dd> <dd><input name="league_name" type="text" id="league_name" size="20" maxlength="20" value="{LEAGUE_NAME}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="league_short">{L_LEAGUE_SHORT}:</label><br /><span>{L_LEAGUE_SHORT_EXPLAIN}</span></dt> <dt><label for="league_short">{L_LEAGUE_SHORT}:</label><br /><span>{L_LEAGUE_SHORT_EXPLAIN}</span></dt>

View File

@@ -1,285 +1,285 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF S_EDIT --> <!-- IF S_EDIT -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a> <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
<h1>{L_ACP_FOOTBALL_MATCHDAYS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_MATCHDAYS_MANAGE}</h1>
<p>{L_MATCHDAY_EDIT_EXPLAIN}</p> <p>{L_MATCHDAY_EDIT_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="settings" method="post" action="{U_ACTION}"> <form id="settings" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_MATCHDAY_DETAILS}</legend> <legend>{L_MATCHDAY_DETAILS}</legend>
<dl> <dl>
<dt><label for="season">{L_SEASON}:</label></dt> <dt><label for="season">{L_SEASON}:</label></dt>
<dd><strong>{SEASON_NAME}</strong><input name="s" type="hidden" id="season" value="{SEASON}" /></dd> <dd><strong>{SEASON_NAME}</strong><input name="s" type="hidden" id="season" value="{SEASON}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="league">{L_LEAGUE}:</label></dt> <dt><label for="league">{L_LEAGUE}:</label></dt>
<dd><strong>{LEAGUE_NAME}</strong><input name="l" type="hidden" id="league" value="{LEAGUE}" /></dd> <dd><strong>{LEAGUE_NAME}</strong><input name="l" type="hidden" id="league" value="{LEAGUE}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday">{L_MATCHDAY}:</label></dt> <dt><label for="matchday">{L_MATCHDAY}:</label></dt>
<dd><strong>{MATCHDAY}</strong><input name="m" type="hidden" id="matchday" value="{MATCHDAY}" /></dd> <dd><strong>{MATCHDAY}</strong><input name="m" type="hidden" id="matchday" value="{MATCHDAY}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday_name">{L_MATCHDAY_NAME}:</label></dt> <dt><label for="matchday_name">{L_MATCHDAY_NAME}:</label></dt>
<dd><input name="matchday_name" type="text" id="matchday_name" size="30" maxlength="30" value="{MATCHDAY_NAME}" /></dd> <dd><input name="matchday_name" type="text" id="matchday_name" size="30" maxlength="30" value="{MATCHDAY_NAME}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday_status">{L_MATCHDAY_STATUS}:</label><br /><span>{L_MATCHDAY_STATUS_EXPLAIN}</span></dt> <dt><label for="matchday_status">{L_MATCHDAY_STATUS}:</label><br /><span>{L_MATCHDAY_STATUS_EXPLAIN}</span></dt>
<dd><strong>{MATCHDAY_STATUS}</strong><input name="matchday_status" type="hidden" id="matchday_status" value="{MATCHDAY_STATUS}" /></dd> <dd><strong>{MATCHDAY_STATUS}</strong><input name="matchday_status" type="hidden" id="matchday_status" value="{MATCHDAY_STATUS}" /></dd>
</dl> </dl>
<!-- IF S_EDIT_DELIVERY --> <!-- IF S_EDIT_DELIVERY -->
<dl> <dl>
<dt><label for="delivery1">{L_MATCHDAY_DELIVERY}:</label><br /><span>{L_MATCHDAY_DELIVERY_EXPLAIN}</span></dt> <dt><label for="delivery1">{L_MATCHDAY_DELIVERY}:</label><br /><span>{L_MATCHDAY_DELIVERY_EXPLAIN}</span></dt>
<dd>{L_DAY}: <select id="delivery1" name="dday1_day">{S_DELIVERY1_DAY_OPTIONS}</select> <dd>{L_DAY}: <select id="delivery1" name="dday1_day">{S_DELIVERY1_DAY_OPTIONS}</select>
{L_MONTH}: <select name="dday1_month">{S_DELIVERY1_MONTH_OPTIONS}</select> {L_MONTH}: <select name="dday1_month">{S_DELIVERY1_MONTH_OPTIONS}</select>
{L_YEAR}: <select name="dday1_year">{S_DELIVERY1_YEAR_OPTIONS}</select>&nbsp;&nbsp;&nbsp; {L_YEAR}: <select name="dday1_year">{S_DELIVERY1_YEAR_OPTIONS}</select>&nbsp;&nbsp;&nbsp;
{L_TIME}: <select name="dday1_hour">{S_DELIVERY1_HOUR_OPTIONS}</select>: {L_TIME}: <select name="dday1_hour">{S_DELIVERY1_HOUR_OPTIONS}</select>:
<select name="dday1_min">{S_DELIVERY1_MIN_OPTIONS}</select> <select name="dday1_min">{S_DELIVERY1_MIN_OPTIONS}</select>
</dd> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="delivery2">{L_MATCHDAY_DELIVERY2}:</label><br /><span>{L_MATCHDAY_DELIVERY2_EXPLAIN}</span></dt> <dt><label for="delivery2">{L_MATCHDAY_DELIVERY2}:</label><br /><span>{L_MATCHDAY_DELIVERY2_EXPLAIN}</span></dt>
<dd>{L_DAY}: <select id="delivery2" name="dday2_day">{S_DELIVERY2_DAY_OPTIONS}</select> <dd>{L_DAY}: <select id="delivery2" name="dday2_day">{S_DELIVERY2_DAY_OPTIONS}</select>
{L_MONTH}: <select name="dday2_month">{S_DELIVERY2_MONTH_OPTIONS}</select> {L_MONTH}: <select name="dday2_month">{S_DELIVERY2_MONTH_OPTIONS}</select>
{L_YEAR}: <select name="dday2_year">{S_DELIVERY2_YEAR_OPTIONS}</select>&nbsp;&nbsp;&nbsp; {L_YEAR}: <select name="dday2_year">{S_DELIVERY2_YEAR_OPTIONS}</select>&nbsp;&nbsp;&nbsp;
{L_TIME}: <select name="dday2_hour">{S_DELIVERY2_HOUR_OPTIONS}</select>: {L_TIME}: <select name="dday2_hour">{S_DELIVERY2_HOUR_OPTIONS}</select>:
<select name="dday2_min">{S_DELIVERY2_MIN_OPTIONS}</select> <select name="dday2_min">{S_DELIVERY2_MIN_OPTIONS}</select>
</dd> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="delivery3">{L_MATCHDAY_DELIVERY3}:</label><br /><span>{L_MATCHDAY_DELIVERY3_EXPLAIN}</span></dt> <dt><label for="delivery3">{L_MATCHDAY_DELIVERY3}:</label><br /><span>{L_MATCHDAY_DELIVERY3_EXPLAIN}</span></dt>
<dd>{L_DAY}: <select id="delivery3" name="dday3_day">{S_DELIVERY3_DAY_OPTIONS}</select> <dd>{L_DAY}: <select id="delivery3" name="dday3_day">{S_DELIVERY3_DAY_OPTIONS}</select>
{L_MONTH}: <select name="dday3_month">{S_DELIVERY3_MONTH_OPTIONS}</select> {L_MONTH}: <select name="dday3_month">{S_DELIVERY3_MONTH_OPTIONS}</select>
{L_YEAR}: <select name="dday3_year">{S_DELIVERY3_YEAR_OPTIONS}</select>&nbsp;&nbsp;&nbsp; {L_YEAR}: <select name="dday3_year">{S_DELIVERY3_YEAR_OPTIONS}</select>&nbsp;&nbsp;&nbsp;
{L_TIME}: <select name="dday3_hour">{S_DELIVERY3_HOUR_OPTIONS}</select>: {L_TIME}: <select name="dday3_hour">{S_DELIVERY3_HOUR_OPTIONS}</select>:
<select name="dday3_min">{S_DELIVERY3_MIN_OPTIONS}</select> <select name="dday3_min">{S_DELIVERY3_MIN_OPTIONS}</select>
</dd> </dd>
</dl> </dl>
<!-- ELSE --> <!-- ELSE -->
<dl> <dl>
<dt><label for="matchday_delivery1">{L_MATCHDAY_DELIVERY}:</label><br /><span>{L_MATCHDAY_DELIVERY_EXPLAIN}</span></dt> <dt><label for="matchday_delivery1">{L_MATCHDAY_DELIVERY}:</label><br /><span>{L_MATCHDAY_DELIVERY_EXPLAIN}</span></dt>
<dd> <dd>
{MATCHDAY_DEL1} {MATCHDAY_DEL1}
</dd> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday_delivery2">{L_MATCHDAY_DELIVERY2}:</label><br /><span>{L_MATCHDAY_DELIVERY2_EXPLAIN}</span></dt> <dt><label for="matchday_delivery2">{L_MATCHDAY_DELIVERY2}:</label><br /><span>{L_MATCHDAY_DELIVERY2_EXPLAIN}</span></dt>
<dd> <dd>
{MATCHDAY_DEL2} {MATCHDAY_DEL2}
</dd> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="matchday_delivery3">{L_MATCHDAY_DELIVERY3}:</label><br /><span>{L_MATCHDAY_DELIVERY3_EXPLAIN}</span></dt> <dt><label for="matchday_delivery3">{L_MATCHDAY_DELIVERY3}:</label><br /><span>{L_MATCHDAY_DELIVERY3_EXPLAIN}</span></dt>
<dd> <dd>
{MATCHDAY_DEL3} {MATCHDAY_DEL3}
</dd> </dd>
</dl> </dl>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_KO_LEAGUE --> <!-- IF S_KO_LEAGUE -->
<dl> <dl>
<dt><label for="matchday_matches">{L_MATCHDAY_MATCHES}:</label><br /><span>{L_MATCHDAY_MATCHES_EXPLAIN}</span></dt> <dt><label for="matchday_matches">{L_MATCHDAY_MATCHES}:</label><br /><span>{L_MATCHDAY_MATCHES_EXPLAIN}</span></dt>
<dd> <dd>
<!-- IF S_EDIT_MATCHES --> <!-- IF S_EDIT_MATCHES -->
<input name="matchday_matches" type="text" id="matchday_matches" size="2" maxlength="2" value="{MATCHDAY_MATCHES}" /> <input name="matchday_matches" type="text" id="matchday_matches" size="2" maxlength="2" value="{MATCHDAY_MATCHES}" />
<!-- ELSE --> <!-- ELSE -->
{MATCHDAY_MATCHES} {MATCHDAY_MATCHES}
<!-- ENDIF --> <!-- ENDIF -->
</dd> </dd>
</dl> </dl>
<input type="hidden" name="ko_league" value="1" /> <input type="hidden" name="ko_league" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ELSEIF S_CHANGE_DELIVERY --> <!-- ELSEIF S_CHANGE_DELIVERY -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a> <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
<h1>{L_CHANGE_DELIVERY}</h1> <h1>{L_CHANGE_DELIVERY}</h1>
<p>{L_CHANGE_DELIVERY_EXPLAIN}</p> <p>{L_CHANGE_DELIVERY_EXPLAIN}</p>
<form id="change_delivery" method="post" action="{U_ACTION}"> <form id="change_delivery" method="post" action="{U_ACTION}">
<!-- IF S_SHOW_DELIVERY_SELECT --> <!-- IF S_SHOW_DELIVERY_SELECT -->
<fieldset> <fieldset>
<legend>{L_DELIVERY_SET_TIME}</legend> <legend>{L_DELIVERY_SET_TIME}</legend>
<dl> <dl>
<dt><label> {L_BACKWARD_DELIVERY}:</label><br /><span>{L_BACKWARD_DELIVERY_EXPLAIN}</span></dt> <dt><label> {L_BACKWARD_DELIVERY}:</label><br /><span>{L_BACKWARD_DELIVERY_EXPLAIN}</span></dt>
<dd>{L_DAYS}: <select id="backward_days" name="backward_days">{S_BACKWARD_DAYS_OPTIONS}</select> &nbsp; <dd>{L_DAYS}: <select id="backward_days" name="backward_days">{S_BACKWARD_DAYS_OPTIONS}</select> &nbsp;
{L_HOURS}: <select name="backward_hours">{S_BACKWARD_HOURS_OPTIONS}</select> &nbsp; {L_HOURS}: <select name="backward_hours">{S_BACKWARD_HOURS_OPTIONS}</select> &nbsp;
{L_MINUTES}: <select name="backward_minutes">{S_BACKWARD_MINUTES_OPTIONS}</select> {L_MINUTES}: <select name="backward_minutes">{S_BACKWARD_MINUTES_OPTIONS}</select>
</dd> </dd>
</dl> </dl>
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_SHOW_DELIVERY --> <!-- IF S_SHOW_DELIVERY -->
<h1>{L_UPDATE_DELIVERY}</h1> <h1>{L_UPDATE_DELIVERY}</h1>
<p>{L_UPDATE_DELIVERY_EXPLAIN}</p> <p>{L_UPDATE_DELIVERY_EXPLAIN}</p>
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('change_delivery', 'delivery_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('change_delivery', 'delivery_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('change_delivery', 'delivery_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('change_delivery', 'delivery_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_MATCHDAY}</th> <th>{L_MATCHDAY}</th>
<th>{L_DELIVERY_NUMBER}</th> <th>{L_DELIVERY_NUMBER}</th>
<th>{L_DELIVERY}</th> <th>{L_DELIVERY}</th>
<th>{L_NEW_DELIVERY}</th> <th>{L_NEW_DELIVERY}</th>
<th>{L_SELECT}</th> <th>{L_SELECT}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN delivery --> <!-- BEGIN delivery -->
<tr class="{delivery.ROW_CLASS}"> <tr class="{delivery.ROW_CLASS}">
<td style="text-align: center;"><strong>{delivery.MATCHDAY}</strong></td> <td style="text-align: center;"><strong>{delivery.MATCHDAY}</strong></td>
<td>{delivery.NUMBER}</td> <td>{delivery.NUMBER}</td>
<td><b>{delivery.DELIVERY_DATE_DAY}</b> <td><b>{delivery.DELIVERY_DATE_DAY}</b>
<!-- IF delivery.DELIVERY_ERROR --><span style="color: #FF0000;"><!-- ENDIF --> <!-- IF delivery.DELIVERY_ERROR --><span style="color: #FF0000;"><!-- ENDIF -->
{delivery.DELIVERY_DATE} {delivery.DELIVERY_DATE}
<!-- IF delivery.DELIVERY_ERROR --></span><!-- ENDIF --> <!-- IF delivery.DELIVERY_ERROR --></span><!-- ENDIF -->
</td> </td>
<td><b>{delivery.NEW_DELIVERY_DAY}</b> {delivery.NEW_DELIVERY} <td><b>{delivery.NEW_DELIVERY_DAY}</b> {delivery.NEW_DELIVERY}
<input type="hidden" name="new_delivery_{delivery.MATCHDAY}_{delivery.NUMBER}" value="{delivery.NEW_DELIVERY}" /> <input type="hidden" name="new_delivery_{delivery.MATCHDAY}_{delivery.NUMBER}" value="{delivery.NEW_DELIVERY}" />
</td> </td>
<td> <td>
<input name="delivery_{delivery.MATCHDAY}_{delivery.NUMBER}" id="delivery_{delivery.MATCHDAY}_{delivery.NUMBER}" <input name="delivery_{delivery.MATCHDAY}_{delivery.NUMBER}" id="delivery_{delivery.MATCHDAY}_{delivery.NUMBER}"
type="checkbox" class="radio" <!-- IF delivery.SELECT_CHECKED --> checked="checked"<!-- ENDIF --> /> type="checkbox" class="radio" <!-- IF delivery.SELECT_CHECKED --> checked="checked"<!-- ENDIF --> />
</td> </td>
</tr> </tr>
<!-- END delivery --> <!-- END delivery -->
</tbody> </tbody>
</table> </table>
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('update_delivery', 'delivery_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('update_delivery', 'delivery_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('update_delivery', 'delivery_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('update_delivery', 'delivery_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<!-- IF S_SHOW_DELIVERY --> <!-- IF S_SHOW_DELIVERY -->
<input class="button1" type="submit" id="update_delivery" name="update_delivery" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="update_delivery" name="update_delivery" value="{L_SUBMIT}" />&nbsp;
<!-- ELSE --> <!-- ELSE -->
<input class="button1" type="submit" id="show_delivery" name="show_delivery" value="{L_SHOW_DELIVERY}" />&nbsp; <input class="button1" type="submit" id="show_delivery" name="show_delivery" value="{L_SHOW_DELIVERY}" />&nbsp;
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_MATCHDAYS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_MATCHDAYS_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_MATCHDAYS_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_MATCHDAYS_MANAGE_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1> <h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="matchday_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="matchday_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="matchday_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="matchday_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" id="add_matchday" method="post" action="{U_ACTION}"> <form style="display:inline;" id="add_matchday" method="post" action="{U_ACTION}">
<fieldset class="quick"> <fieldset class="quick">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="m" value="{S_MATCHDAY}" /> <input type="hidden" name="m" value="{S_MATCHDAY}" />
<input type="hidden" name="ko_league" value="{KO_LEAGUE}" /> <input type="hidden" name="ko_league" value="{KO_LEAGUE}" />
<!-- IF S_MATCHDAYS_REMOVE --> <!-- IF S_MATCHDAYS_REMOVE -->
<input class="button2" type="submit" name="submit" value="{L_REMOVE_MATCHDAYS}" /> <input class="button2" type="submit" name="submit" value="{L_REMOVE_MATCHDAYS}" />
<input type="hidden" name="remove" value="1" /> <input type="hidden" name="remove" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_MATCHDAY_ADD --> <!-- IF S_MATCHDAY_ADD -->
<input class="button2" type="submit" name="submit" value="{L_GENERATE_MATCHDAY}" /> <input class="button2" type="submit" name="submit" value="{L_GENERATE_MATCHDAY}" />
<input type="hidden" name="add" value="1" /> <input type="hidden" name="add" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<form style="display:inline;" id="change_delivery" method="post" action="{U_ACTION}"> <form style="display:inline;" id="change_delivery" method="post" action="{U_ACTION}">
<fieldset class="quick"> <fieldset class="quick">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<!-- IF not S_MATCHDAY_ADD and not S_MATCHDAYS_REMOVE --> <!-- IF not S_MATCHDAY_ADD and not S_MATCHDAYS_REMOVE -->
<input class="button2" type="submit" name="change_delivery" value="{L_CHANGE_DELIVERY}" /> <input class="button2" type="submit" name="change_delivery" value="{L_CHANGE_DELIVERY}" />
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<h1>{L_MATCHDAY_DEF}</h1> <h1>{L_MATCHDAY_DEF}</h1>
<p>{L_MATCHDAY_DEF_EXPLAIN}</p> <p>{L_MATCHDAY_DEF_EXPLAIN}</p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_MATCHDAY}</th> <th>{L_MATCHDAY}</th>
<th style="width: 25%">{L_MATCHDAY_NAME}</th> <th style="width: 25%">{L_MATCHDAY_NAME}</th>
<th>{L_MATCHDAY_STATUS}</th> <th>{L_MATCHDAY_STATUS}</th>
<th>{L_MATCHDAY_DELIVERY}</th> <th>{L_MATCHDAY_DELIVERY}</th>
<th>{L_MATCHDAY_DELIVERY} 2</th> <th>{L_MATCHDAY_DELIVERY} 2</th>
<th>{L_MATCHDAY_DELIVERY} 3</th> <th>{L_MATCHDAY_DELIVERY} 3</th>
<th>{L_OPTIONS}</th> <th>{L_OPTIONS}</th>
<th>{L_ACTION}</th> <th>{L_ACTION}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- IF .matchdays --> <!-- IF .matchdays -->
<!-- BEGIN matchdays --> <!-- BEGIN matchdays -->
<tr class="{matchdays.ROW_CLASS}"> <tr class="{matchdays.ROW_CLASS}">
<td style="text-align: center;"><strong>{matchdays.MATCHDAY}</strong></td> <td style="text-align: center;"><strong>{matchdays.MATCHDAY}</strong></td>
<td>{matchdays.MATCHDAY_NAME}</td> <td>{matchdays.MATCHDAY_NAME}</td>
<td style="text-align: center;">{matchdays.MATCHDAY_STATUS}</td> <td style="text-align: center;">{matchdays.MATCHDAY_STATUS}</td>
<td>{matchdays.MATCHDAY_DELIVERY}</td> <td>{matchdays.MATCHDAY_DELIVERY}</td>
<td>{matchdays.MATCHDAY_DELIVERY_2}</td> <td>{matchdays.MATCHDAY_DELIVERY_2}</td>
<td>{matchdays.MATCHDAY_DELIVERY_3}</td> <td>{matchdays.MATCHDAY_DELIVERY_3}</td>
<td style="text-align: center;"><a href="{matchdays.U_EDIT}">{L_SETTINGS}</a></td> <td style="text-align: center;"><a href="{matchdays.U_EDIT}">{L_SETTINGS}</a></td>
<td style="text-align: center;"><!-- IF matchdays.U_DELETE --><a href="{matchdays.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td> <td style="text-align: center;"><!-- IF matchdays.U_DELETE --><a href="{matchdays.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td>
</tr> </tr>
<!-- END matchdays --> <!-- END matchdays -->
<!-- ELSE --> <!-- ELSE -->
<tr> <tr>
<td colspan="4" class="row3">{L_NO_MATCHDAYS_CREATED}</td> <td colspan="4" class="row3">{L_NO_MATCHDAYS_CREATED}</td>
</tr> </tr>
<!-- ENDIF --> <!-- ENDIF -->
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,223 +1,223 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_RESULTS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_RESULTS_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_RESULTS_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_RESULTS_MANAGE_EXPLAIN}</p>
<h1 style="display:inline;">{L_SELECT_MATCHDAY}:</h1> <h1 style="display:inline;">{L_SELECT_MATCHDAY}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="match_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="match_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<select name="m" id="match_matchday" onchange="this.form.submit();">{S_MATCHDAY_OPTIONS}</select> <select name="m" id="match_matchday" onchange="this.form.submit();">{S_MATCHDAY_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<!-- IF S_SUCCESS --> <!-- IF S_SUCCESS -->
<div class="successbox"> <div class="successbox">
<h3>{L_ADVICE}</h3> <h3>{L_ADVICE}</h3>
<p>{SUCCESS_MSG}</p> <p>{SUCCESS_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="list" method="post" action="{U_ACTION}"> <form id="list" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{S_LEGEND}</legend> <legend>{S_LEGEND}</legend>
<p class="small" style="margin:0px">{S_TIME}</p> <p class="small" style="margin:0px">{S_TIME}</p>
<input type="hidden" name="s" value="{S_SEASON}" style="display:inline" /> <input type="hidden" name="s" value="{S_SEASON}" style="display:inline" />
<input type="hidden" name="l" value="{S_LEAGUE}" style="display:inline" /> <input type="hidden" name="l" value="{S_LEAGUE}" style="display:inline" />
<input type="hidden" name="m" value="{S_MATCHDAY}" style="display:inline" /> <input type="hidden" name="m" value="{S_MATCHDAY}" style="display:inline" />
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'delete_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'delete_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'delete_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'delete_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}</th> <th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}</th>
<th>{L_MATCH_BEGIN}</th> <th>{L_MATCH_BEGIN}</th>
<th colspan="3" style="text-align:center">{L_VS}</th> <th colspan="3" style="text-align:center">{L_VS}</th>
<th title="{L_RESULT_EXPLAIN}" colspan="3" style="text-align:center">{L_RESULT} ({RESULT_EXPLAIN})</th> <th title="{L_RESULT_EXPLAIN}" colspan="3" style="text-align:center">{L_RESULT} ({RESULT_EXPLAIN})</th>
<!-- IF S_KO_MATCHDAY --> <!-- IF S_KO_MATCHDAY -->
<th title="{L_OVERTIME_EXPLAIN}" colspan="3" style="text-align:center">{LABEL_FINALRESULT}</th> <th title="{L_OVERTIME_EXPLAIN}" colspan="3" style="text-align:center">{LABEL_FINALRESULT}</th>
<!-- ENDIF --> <!-- ENDIF -->
<th title="{L_MATCH_STATUS_TITLE}" style="text-align:center">{L_STATUS} </th> <th title="{L_MATCH_STATUS_TITLE}" style="text-align:center">{L_STATUS} </th>
<th title="{L_NO_VALUATION_EXPLAIN}" style="text-align:center">{L_NO_VALUATION}</th> <th title="{L_NO_VALUATION_EXPLAIN}" style="text-align:center">{L_NO_VALUATION}</th>
<th title="{L_DELETE_EXPLAIN}" style="text-align:center">{L_DELETE}</th> <th title="{L_DELETE_EXPLAIN}" style="text-align:center">{L_DELETE}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- IF .match --> <!-- IF .match -->
<!-- BEGIN match --> <!-- BEGIN match -->
<tr class="{match.ROW_CLASS}"> <tr class="{match.ROW_CLASS}">
<td style="text-align:center"> <td style="text-align:center">
<!-- IF match.EDIT --> <!-- IF match.EDIT -->
<input name="select_{match.NUMBER}" id="select_{match.NUMBER}" type="checkbox" <input name="select_{match.NUMBER}" id="select_{match.NUMBER}" type="checkbox"
class="radio" <!-- IF match.SELECT_CHECKED --> checked="checked"<!-- ENDIF --> /> class="radio" <!-- IF match.SELECT_CHECKED --> checked="checked"<!-- ENDIF --> />
<!-- ELSE --> <!-- ELSE -->
&nbsp; &nbsp;
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<td> {match.BEGIN}</td> <td> {match.BEGIN}</td>
<td>{match.HOME_NAME}</td> <td>{match.HOME_NAME}</td>
<td>:</td> <td>:</td>
<td style="text-align:left">{match.GUEST_NAME}</td> <td style="text-align:left">{match.GUEST_NAME}</td>
<td style="text-align:right"> <td style="text-align:right">
<!-- IF match.EDIT --> <!-- IF match.EDIT -->
<input name="goals_home_{match.NUMBER}" style="margin:0; width:30px;" <input name="goals_home_{match.NUMBER}" style="margin:0; width:30px;"
type="number" min="0" max="20" size="2" value="{match.GOALS_HOME}" type="number" min="0" max="20" size="2" value="{match.GOALS_HOME}"
onchange="document.getElementById('select_{match.NUMBER}').checked = true;" /> onchange="document.getElementById('select_{match.NUMBER}').checked = true;" />
<!-- ELSE --> <!-- ELSE -->
{match.GOALS_HOME} {match.GOALS_HOME}
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<td style="text-align:center;width:3px;">:</td> <td style="text-align:center;width:3px;">:</td>
<td style="text-align:left"> <td style="text-align:left">
<!-- IF match.EDIT --> <!-- IF match.EDIT -->
<input name="goals_guest_{match.NUMBER}" style="margin:0; width:30px;" <input name="goals_guest_{match.NUMBER}" style="margin:0; width:30px;"
type="number" min="0" max="20" size="2" value="{match.GOALS_GUEST}" type="number" min="0" max="20" size="2" value="{match.GOALS_GUEST}"
onchange="document.getElementById('select_{match.NUMBER}').checked = true;" /> onchange="document.getElementById('select_{match.NUMBER}').checked = true;" />
<!-- ELSE --> <!-- ELSE -->
{match.GOALS_GUEST} {match.GOALS_GUEST}
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<!-- IF S_KO_MATCHDAY --> <!-- IF S_KO_MATCHDAY -->
<td style="text-align:right"> <td style="text-align:right">
<!-- IF match.KO_MATCH --> <!-- IF match.KO_MATCH -->
<!-- IF match.EDIT --> <!-- IF match.EDIT -->
<input name="overtime_home_{match.NUMBER}" style="margin:0; width:30px;" <input name="overtime_home_{match.NUMBER}" style="margin:0; width:30px;"
type="number" min="0" max="20" size="2" value="{match.OVERTIME_HOME}" type="number" min="0" max="20" size="2" value="{match.OVERTIME_HOME}"
onchange="document.getElementById('select_{match.NUMBER}').checked = true;" /> onchange="document.getElementById('select_{match.NUMBER}').checked = true;" />
<!-- ELSE --> <!-- ELSE -->
{match.OVERTIME_HOME} {match.OVERTIME_HOME}
<!-- ENDIF --> <!-- ENDIF -->
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<td style="text-align:center; width:3px;">:</td> <td style="text-align:center; width:3px;">:</td>
<td style="text-align:left"> <td style="text-align:left">
<!-- IF match.KO_MATCH --> <!-- IF match.KO_MATCH -->
<!-- IF match.EDIT --> <!-- IF match.EDIT -->
<input name="overtime_guest_{match.NUMBER}" style="margin:0; width:30px;" <input name="overtime_guest_{match.NUMBER}" style="margin:0; width:30px;"
type="number" min="0" max="20" size="2" value="{match.OVERTIME_GUEST}" type="number" min="0" max="20" size="2" value="{match.OVERTIME_GUEST}"
onchange="document.getElementById('select_{match.NUMBER}').checked = true;" /> onchange="document.getElementById('select_{match.NUMBER}').checked = true;" />
<!-- ELSE --> <!-- ELSE -->
{match.OVERTIME_GUEST} {match.OVERTIME_GUEST}
<!-- ENDIF --> <!-- ENDIF -->
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<!-- ENDIF --> <!-- ENDIF -->
<td style="text-align:center"><input type="hidden" name="status" value="{match.STATUS}" />{match.STATUS_COLOR}</td> <td style="text-align:center"><input type="hidden" name="status" value="{match.STATUS}" />{match.STATUS_COLOR}</td>
<td style="text-align:center"> <td style="text-align:center">
<input name="no_valuation_{match.NUMBER}" type="checkbox" class="radio" <input name="no_valuation_{match.NUMBER}" type="checkbox" class="radio"
<!-- IF match.NO_VALUATION_CHECKED --> checked="checked"<!-- ENDIF --> <!-- IF match.NO_VALUATION_CHECKED --> checked="checked"<!-- ENDIF -->
onchange="document.getElementById('select_{match.NUMBER}').checked = true;" /> onchange="document.getElementById('select_{match.NUMBER}').checked = true;" />
</td> </td>
<td style="text-align:center"> <td style="text-align:center">
<input name="delete_{match.NUMBER}" type="checkbox" class="radio" <input name="delete_{match.NUMBER}" type="checkbox" class="radio"
onchange="document.getElementById('select_{match.NUMBER}').checked = true;" /> onchange="document.getElementById('select_{match.NUMBER}').checked = true;" />
</td> </td>
</tr> </tr>
<!-- END match --> <!-- END match -->
</tbody> </tbody>
</table> </table>
<p class="small"> <p class="small">
<a href="#" onclick="marklist('list', 'select_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'select_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'select_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'select_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- IF S_EXTRA_RESULTS --> <!-- IF S_EXTRA_RESULTS -->
<br /> <br />
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th style="text-align:center">{L_SELECT}</th> <th style="text-align:center">{L_SELECT}</th>
<th style="text-align: left;">{L_QUESTION}</th> <th style="text-align: left;">{L_QUESTION}</th>
<th>{L_POSSIBLE_POINTS}</th> <th>{L_POSSIBLE_POINTS}</th>
<th>{L_EVALUATION}</th> <th>{L_EVALUATION}</th>
<th>{L_RESULT}</th> <th>{L_RESULT}</th>
<th>{L_STATUS} </th> <th>{L_STATUS} </th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN extra_result --> <!-- BEGIN extra_result -->
<tr class="{extra_result.ROW_CLASS}"> <tr class="{extra_result.ROW_CLASS}">
<td style="text-align:center"> <td style="text-align:center">
<!-- IF extra_result.S_EDIT_EXTRA --> <!-- IF extra_result.S_EDIT_EXTRA -->
<input name="select{extra_result.EXTRA_NO}" id="select{extra_result.EXTRA_NO}" type="checkbox" class="radio" /> <input name="select{extra_result.EXTRA_NO}" id="select{extra_result.EXTRA_NO}" type="checkbox" class="radio" />
<!-- ELSE --> <!-- ELSE -->
&nbsp; &nbsp;
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<td>{extra_result.QUESTION}</td> <td>{extra_result.QUESTION}</td>
<td style="text-align: center;">{extra_result.EXTRA_POINTS}</td> <td style="text-align: center;">{extra_result.EXTRA_POINTS}</td>
<td style="text-align: center;" title="{extra_result.EVALUATION_TITLE}">{extra_result.EVALUATION}</td> <td style="text-align: center;" title="{extra_result.EVALUATION_TITLE}">{extra_result.EVALUATION}</td>
<td style="text-align: center;"> <td style="text-align: center;">
<!-- IF extra_result.S_EDIT_EXTRA --> <!-- IF extra_result.S_EDIT_EXTRA -->
<!-- IF extra_result.S_DISPLAY_TYPE == 1 --> <!-- IF extra_result.S_DISPLAY_TYPE == 1 -->
<!-- IF S_VIEW <> 'print' --> <!-- IF S_VIEW <> 'print' -->
<select {extra_result.S_MULTIPLE} name="extra{extra_result.EXTRA_NO}{extra_result.S_MULTIPLE_ARR}" <select {extra_result.S_MULTIPLE} name="extra{extra_result.EXTRA_NO}{extra_result.S_MULTIPLE_ARR}"
onchange="document.getElementById('select{extra_result.EXTRA_NO}').checked = true;"> onchange="document.getElementById('select{extra_result.EXTRA_NO}').checked = true;">
<!-- BEGIN extra_option --> <!-- BEGIN extra_option -->
<option {extra_result.extra_option.S_SELECTED} value="{extra_result.extra_option.OPTION_VALUE}">{extra_result.extra_option.OPTION_NAME}</option> <option {extra_result.extra_option.S_SELECTED} value="{extra_result.extra_option.OPTION_VALUE}">{extra_result.extra_option.OPTION_NAME}</option>
<!-- END extra_option --> <!-- END extra_option -->
</select> </select>
<!-- ELSE --> <!-- ELSE -->
_{extra_result.RESULT}_ _{extra_result.RESULT}_
<!-- ENDIF --> <!-- ENDIF -->
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF extra_result.S_DISPLAY_TYPE == 2 --> <!-- IF extra_result.S_DISPLAY_TYPE == 2 -->
<!-- IF S_VIEW <> 'print' --> <!-- IF S_VIEW <> 'print' -->
<input style="display:inline; margin:0; padding:0;" type="text" name="extra{extra_result.EXTRA_NO}" size="15" maxlength="255" <input style="display:inline; margin:0; padding:0;" type="text" name="extra{extra_result.EXTRA_NO}" size="15" maxlength="255"
value="{extra_result.RESULT}" onchange="document.getElementById('select{extra_result.EXTRA_NO}').checked = true;"> value="{extra_result.RESULT}" onchange="document.getElementById('select{extra_result.EXTRA_NO}').checked = true;">
<!-- ELSE --> <!-- ELSE -->
_{extra_result.RESULT}_ _{extra_result.RESULT}_
<!-- ENDIF --> <!-- ENDIF -->
<!-- ENDIF --> <!-- ENDIF -->
<!-- ELSE --> <!-- ELSE -->
{extra_result.RESULT} {extra_result.RESULT}
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
<td style="text-align:center"><input type="hidden" name="status" value="{extra_result.STATUS}" />{extra_result.STATUS_COLOR}</td> <td style="text-align:center"><input type="hidden" name="status" value="{extra_result.STATUS}" />{extra_result.STATUS_COLOR}</td>
</tr> </tr>
<!-- END extra_result --> <!-- END extra_result -->
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_CASH_POINTS -->{L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" <!-- IF S_CASH -->checked="checked"<!-- ENDIF --> /> <!-- ENDIF --> <!-- IF S_CASH_POINTS -->{L_CASH_POINTS} <input name="cash" type="checkbox" class="radio" <!-- IF S_CASH -->checked="checked"<!-- ENDIF --> /> <!-- ENDIF -->
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="edit" value="{L_SAVE}" />&nbsp; <input class="button1" type="submit" id="submit" name="edit" value="{L_SAVE}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<tr> <tr>
<td colspan="14" class="row3">{L_NO_MATCHES}</td> <td colspan="14" class="row3">{L_NO_MATCHES}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE frame_results.html --> <!-- INCLUDE frame_results.html -->
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,105 +1,105 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF S_EDIT --> <!-- IF S_EDIT -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a> <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
<h1>{L_ACP_FOOTBALL_SEASONS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_SEASONS_MANAGE}</h1>
<p>{L_SEASON_EDIT_EXPLAIN}</p> <p>{L_SEASON_EDIT_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="settings" method="post" action="{U_ACTION}"> <form id="settings" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_SEASON_DETAILS}</legend> <legend>{L_SEASON_DETAILS}</legend>
<dl> <dl>
<dt><label for="season">{L_SEASON}:</label></dt> <dt><label for="season">{L_SEASON}:</label></dt>
<dd><!-- IF not S_ADD_SEASON --><strong>{SEASON}</strong><!-- ENDIF --> <dd><!-- IF not S_ADD_SEASON --><strong>{SEASON}</strong><!-- ENDIF -->
<input name="s" type="<!-- IF S_ADD_SEASON -->text<!-- ELSE -->hidden<!-- ENDIF -->" id="season" value="{SEASON}" size="4" maxlength="4" /></dd> <input name="s" type="<!-- IF S_ADD_SEASON -->text<!-- ELSE -->hidden<!-- ENDIF -->" id="season" value="{SEASON}" size="4" maxlength="4" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="season_name">{L_SEASON_NAME}:</label><br /><span>{L_SEASON_NAME_EXPLAIN}</span></dt> <dt><label for="season_name">{L_SEASON_NAME}:</label><br /><span>{L_SEASON_NAME_EXPLAIN}</span></dt>
<dd><input name="season_name" type="text" id="season_name" value="{SEASON_NAME}" size="20" maxlength="20" /></dd> <dd><input name="season_name" type="text" id="season_name" value="{SEASON_NAME}" size="20" maxlength="20" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="season_short">{L_SEASON_SHORT}:</label><br /><span>{L_SEASON_SHORT_EXPLAIN}</span></dt> <dt><label for="season_short">{L_SEASON_SHORT}:</label><br /><span>{L_SEASON_SHORT_EXPLAIN}</span></dt>
<dd><input name="season_short" type="text" id="season_short" value="{SEASON_SHORT}" size="10" maxlength="10" /></dd> <dd><input name="season_short" type="text" id="season_short" value="{SEASON_SHORT}" size="10" maxlength="10" /></dd>
</dl> </dl>
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
<!-- IF S_ADD_SEASON --> <!-- IF S_ADD_SEASON -->
<input type="hidden" name="add" value="1" /> <input type="hidden" name="add" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
<input type="hidden" name="edit" value="1" /> <input type="hidden" name="edit" value="1" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_SEASONS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_SEASONS_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_SEASONS_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_SEASONS_MANAGE_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="acp_football_seasons" method="post" action="{U_ACTION}"> <form id="acp_football_seasons" method="post" action="{U_ACTION}">
<fieldset class="quick"> <fieldset class="quick">
<!-- IF S_SEASON_ADD --> <!-- IF S_SEASON_ADD -->
{L_CREATE_SEASON}: <input type="text" name="s" value="" /> <input class="button2" type="submit" name="submit" value="{L_SUBMIT}" /> {L_CREATE_SEASON}: <input type="text" name="s" value="" /> <input class="button2" type="submit" name="submit" value="{L_SUBMIT}" />
<input type="hidden" name="add" value="1" /> <input type="hidden" name="add" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<h1>{L_SEASON_DEF}</h1> <h1>{L_SEASON_DEF}</h1>
<p>{L_SEASON_DEF_EXPLAIN}</p> <p>{L_SEASON_DEF_EXPLAIN}</p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_SEASON}</th> <th>{L_SEASON}</th>
<th style="width: 35%">{L_SEASON_NAME}</th> <th style="width: 35%">{L_SEASON_NAME}</th>
<th>{L_SEASON_SHORT}</th> <th>{L_SEASON_SHORT}</th>
<th>{L_LEAGUES}</th> <th>{L_LEAGUES}</th>
<th>{L_OPTIONS}</th> <th>{L_OPTIONS}</th>
<th>{L_ACTION}</th> <th>{L_ACTION}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- IF .seasons --> <!-- IF .seasons -->
<!-- BEGIN seasons --> <!-- BEGIN seasons -->
<tr class="{seasons.ROW_CLASS}"> <tr class="{seasons.ROW_CLASS}">
<td style="text-align: center;"><strong>{seasons.SEASON}</strong></td> <td style="text-align: center;"><strong>{seasons.SEASON}</strong></td>
<td>{seasons.SEASON_NAME}</td> <td>{seasons.SEASON_NAME}</td>
<td>{seasons.SEASON_SHORT}</td> <td>{seasons.SEASON_SHORT}</td>
<td style="text-align: center;">{seasons.LEAGUES}</td> <td style="text-align: center;">{seasons.LEAGUES}</td>
<td style="text-align: center;"><a href="{seasons.U_EDIT}">{L_SETTINGS}</a></td> <td style="text-align: center;"><a href="{seasons.U_EDIT}">{L_SETTINGS}</a></td>
<td style="text-align: center;"><!-- IF seasons.U_DELETE --><a href="{seasons.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td> <td style="text-align: center;"><!-- IF seasons.U_DELETE --><a href="{seasons.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td>
</tr> </tr>
<!-- END seasons --> <!-- END seasons -->
<!-- ELSE --> <!-- ELSE -->
<tr> <tr>
<td colspan="4" class="row3">{L_NO_SEASONS_CREATED}</td> <td colspan="4" class="row3">{L_NO_SEASONS_CREATED}</td>
</tr> </tr>
<!-- ENDIF --> <!-- ENDIF -->
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,164 +1,164 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF S_EDIT --> <!-- IF S_EDIT -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a> <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
<h1>{L_ACP_FOOTBALL_TEAMS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_TEAMS_MANAGE}</h1>
<p>{L_TEAM_EDIT_EXPLAIN}</p> <p>{L_TEAM_EDIT_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="settings" method="post" action="{U_ACTION}"> <form id="settings" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_TEAM_DETAILS}</legend> <legend>{L_TEAM_DETAILS}</legend>
<dl> <dl>
<dt><label for="team">{L_SEASON}:</label></dt> <dt><label for="team">{L_SEASON}:</label></dt>
<dd><strong>{SEASON_NAME}</strong><input name="s" type="hidden" id="season" value="{SEASON}" /></dd> <dd><strong>{SEASON_NAME}</strong><input name="s" type="hidden" id="season" value="{SEASON}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="team">{L_LEAGUE}:</label></dt> <dt><label for="team">{L_LEAGUE}:</label></dt>
<dd><strong>{LEAGUE_NAME}</strong><input name="l" type="hidden" id="league" value="{LEAGUE}" /></dd> <dd><strong>{LEAGUE_NAME}</strong><input name="l" type="hidden" id="league" value="{LEAGUE}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="team">{L_TEAM}:</label></dt> <dt><label for="team">{L_TEAM}:</label></dt>
<dd><!-- IF not S_ADD_TEAM --><strong>{TEAM}</strong><!-- ENDIF --> <dd><!-- IF not S_ADD_TEAM --><strong>{TEAM}</strong><!-- ENDIF -->
<input name="t" type="<!-- IF S_ADD_TEAM -->text<!-- ELSE -->hidden<!-- ENDIF -->" id="team" value="{TEAM}" /></dd> <input name="t" type="<!-- IF S_ADD_TEAM -->text<!-- ELSE -->hidden<!-- ENDIF -->" id="team" value="{TEAM}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="team_name">{L_TEAM_NAME}:</label></dt> <dt><label for="team_name">{L_TEAM_NAME}:</label></dt>
<dd><input name="team_name" type="text" id="team_name" size="30" maxlength="30" value="{TEAM_NAME}" /></dd> <dd><input name="team_name" type="text" id="team_name" size="30" maxlength="30" value="{TEAM_NAME}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="team_short">{L_TEAM_SHORT}:</label><br /><span>{L_TEAM_SHORT_EXPLAIN}</span></dt> <dt><label for="team_short">{L_TEAM_SHORT}:</label><br /><span>{L_TEAM_SHORT_EXPLAIN}</span></dt>
<dd><input name="team_short" type="text" id="team_short" size="10" maxlength="10" value="{TEAM_SHORT}" /></dd> <dd><input name="team_short" type="text" id="team_short" size="10" maxlength="10" value="{TEAM_SHORT}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="team_symbol">{L_TEAM_SYMBOL}:</label><br /><span>{L_TEAM_SYMBOL_EXPLAIN}</span></dt> <dt><label for="team_symbol">{L_TEAM_SYMBOL}:</label><br /><span>{L_TEAM_SYMBOL_EXPLAIN}</span></dt>
<dd><span> <dd><span>
<select style="vertical-align:top;" name="team_symbol" id="team_symbol" <select style="vertical-align:top;" name="team_symbol" id="team_symbol"
onchange="document.getElementById('teamsymbol').src = '{PHPBB_ROOT_PATH}images/flags/' + this.value;"> onchange="document.getElementById('teamsymbol').src = '{PHPBB_ROOT_PATH}images/flags/' + this.value;">
{TEAM_SYMBOL_OPTIONS} {TEAM_SYMBOL_OPTIONS}
</select>&nbsp;&nbsp;&nbsp;<img src="{TEAM_IMAGE}" id="teamsymbol" alt="{TEAM_NAME}" title="{TEAM_NAME}" /></span></dd> </select>&nbsp;&nbsp;&nbsp;<img src="{TEAM_IMAGE}" id="teamsymbol" alt="{TEAM_NAME}" title="{TEAM_NAME}" /></span></dd>
</dl> </dl>
<!-- IF S_KO_LEAGUE --> <!-- IF S_KO_LEAGUE -->
<dl> <dl>
<dt><label for="team_group">{L_TEAM_GROUP}:</label><br /><span>{L_TEAM_GROUP_EXPLAIN}</span></dt> <dt><label for="team_group">{L_TEAM_GROUP}:</label><br /><span>{L_TEAM_GROUP_EXPLAIN}</span></dt>
<dd><input name="team_group" type="text" id="team_group" size="1" maxlength="1" value="{TEAM_GROUP}" /></dd> <dd><input name="team_group" type="text" id="team_group" size="1" maxlength="1" value="{TEAM_GROUP}" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="team_round">{L_TEAM_ROUND}:</label><br /><span>{L_TEAM_ROUND_EXPLAIN}</span></dt> <dt><label for="team_round">{L_TEAM_ROUND}:</label><br /><span>{L_TEAM_ROUND_EXPLAIN}</span></dt>
<dd><select name="team_round" id="team_round">{TEAM_MATCHDAY_OPTIONS}</select></dd> <dd><select name="team_round" id="team_round">{TEAM_MATCHDAY_OPTIONS}</select></dd>
</dl> </dl>
<input type="hidden" name="ko_league" value="1" /> <input type="hidden" name="ko_league" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp; <input class="button1" type="submit" id="submit" name="update" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
<!-- IF S_ADD_TEAM --> <!-- IF S_ADD_TEAM -->
<input type="hidden" name="add" value="1" /> <input type="hidden" name="add" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
<input type="hidden" name="edit" value="1" /> <input type="hidden" name="edit" value="1" />
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> <!-- ELSE -->
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_TEAMS_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_TEAMS_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_TEAMS_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_TEAMS_MANAGE_EXPLAIN}</p>
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1> <h1 style="display:inline;">{L_SELECT_LEAGUE}:</h1>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="team_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="team_season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form style="display:inline;" method="post" action="{U_ACTION}"> <form style="display:inline;" method="post" action="{U_ACTION}">
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<select name="l" id="team_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="team_league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
{S_FORM_TOKEN} {S_FORM_TOKEN}
</div> </div>
</form> </form>
<form id="add_team" method="post" action="{U_ACTION}"> <form id="add_team" method="post" action="{U_ACTION}">
<fieldset class="quick"> <fieldset class="quick">
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="ko_league" value="{S_KO_LEAGUE}" /> <input type="hidden" name="ko_league" value="{S_KO_LEAGUE}" />
<!-- IF S_TEAM_ADD --> <!-- IF S_TEAM_ADD -->
{L_ADD_TEAM}: <select name="t" id="old_team">{S_TEAM_OPTIONS}</select> <input class="button2" type="submit" name="submit" value="{L_SUBMIT}" /> {L_ADD_TEAM}: <select name="t" id="old_team">{S_TEAM_OPTIONS}</select> <input class="button2" type="submit" name="submit" value="{L_SUBMIT}" />
<input type="hidden" name="add" value="1" /> <input type="hidden" name="add" value="1" />
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<h1>{L_TEAM_DEF} {S_TEAMS}</h1> <h1>{L_TEAM_DEF} {S_TEAMS}</h1>
<p>{L_TEAM_DEF_EXPLAIN}</p> <p>{L_TEAM_DEF_EXPLAIN}</p>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_TEAM}</th> <th>{L_TEAM}</th>
<th></th> <th></th>
<th style="width: 25%">{L_TEAM_NAME}</th> <th style="width: 25%">{L_TEAM_NAME}</th>
<th></th> <th></th>
<th>{L_TEAM_MATCHES}</th> <th>{L_TEAM_MATCHES}</th>
<th>{L_TEAM_AWAY}</th> <th>{L_TEAM_AWAY}</th>
<!-- IF S_KO_LEAGUE --> <!-- IF S_KO_LEAGUE -->
<th>{L_GROUP}</th> <th>{L_GROUP}</th>
<th>{L_MATCHDAY}</th> <th>{L_MATCHDAY}</th>
<!-- ENDIF --> <!-- ENDIF -->
<th>{L_OPTIONS}</th> <th>{L_OPTIONS}</th>
<th>{L_ACTION}</th> <th>{L_ACTION}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- IF .teams --> <!-- IF .teams -->
<!-- BEGIN teams --> <!-- BEGIN teams -->
<tr class="{teams.ROW_CLASS}"> <tr class="{teams.ROW_CLASS}">
<td style="text-align: center;"><strong>{teams.TEAM}</strong></td> <td style="text-align: center;"><strong>{teams.TEAM}</strong></td>
<td style="text-align: center;"><img src="{teams.TEAM_IMAGE}" alt="{teams.TEAM_NAME}" title="{teams.TEAM_NAME}" width="20" height="20" /></td> <td style="text-align: center;"><img src="{teams.TEAM_IMAGE}" alt="{teams.TEAM_NAME}" title="{teams.TEAM_NAME}" width="20" height="20" /></td>
<td>{teams.TEAM_NAME}</td> <td>{teams.TEAM_NAME}</td>
<td>{teams.TEAM_SHORT}</td> <td>{teams.TEAM_SHORT}</td>
<td>{teams.TEAM_MATCHES}</td> <td>{teams.TEAM_MATCHES}</td>
<td>{teams.TEAM_HOME}</td> <td>{teams.TEAM_HOME}</td>
<!-- IF S_KO_LEAGUE --> <!-- IF S_KO_LEAGUE -->
<td style="text-align: center;">{teams.TEAM_GROUP}</td> <td style="text-align: center;">{teams.TEAM_GROUP}</td>
<td style="text-align: center;">{teams.TEAM_ROUND}</td> <td style="text-align: center;">{teams.TEAM_ROUND}</td>
<!-- ENDIF --> <!-- ENDIF -->
<td style="text-align: center;"><a href="{teams.U_EDIT}">{L_SETTINGS}</a></td> <td style="text-align: center;"><a href="{teams.U_EDIT}">{L_SETTINGS}</a></td>
<td style="text-align: center;"><!-- IF teams.U_DELETE --><a href="{teams.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td> <td style="text-align: center;"><!-- IF teams.U_DELETE --><a href="{teams.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td>
</tr> </tr>
<!-- END teams --> <!-- END teams -->
<!-- ELSE --> <!-- ELSE -->
<tr> <tr>
<td colspan="2" class="row3">{L_NO_TEAMS_CREATED}</td> <td colspan="2" class="row3">{L_NO_TEAMS_CREATED}</td>
</tr> </tr>
<!-- ENDIF --> <!-- ENDIF -->
</tbody> </tbody>
</table> </table>
<!-- IF S_MATCHES --> {S_MATCHES} {L_TEAM_MATCHES} <!-- ENDIF --> <!-- IF S_MATCHES --> {S_MATCHES} {L_TEAM_MATCHES} <!-- ENDIF -->
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,430 +1,430 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<h1>{L_ACP_FOOTBALL_UPDATE_MANAGE}</h1> <h1>{L_ACP_FOOTBALL_UPDATE_MANAGE}</h1>
<p>{L_ACP_FOOTBALL_UPDATE_MANAGE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_UPDATE_MANAGE_EXPLAIN}</p>
<!-- IF S_SUCCESS --> <!-- IF S_SUCCESS -->
<div class="successbox"> <div class="successbox">
<h3>{L_ADVICE}</h3> <h3>{L_ADVICE}</h3>
<p>{SUCCESS_MSG}</p> <p>{SUCCESS_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<form id="settings" method="post" action="{U_ACTION}"> <form id="settings" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_SOURCE}</legend> <legend>{L_SOURCE}</legend>
<dl> <dl>
<dt><label for="xml_season_url">{L_XML_SEASON_URL}:</label><br /><span>{L_XML_SEASON_URL_EXPLAIN}</span></dt> <dt><label for="xml_season_url">{L_XML_SEASON_URL}:</label><br /><span>{L_XML_SEASON_URL_EXPLAIN}</span></dt>
<dd> <dd>
<input name="xml_season_url" type="text" id="xml_season_url" value="{XML_SEASON_URL}" size="60" maxlength="100" <input name="xml_season_url" type="text" id="xml_season_url" value="{XML_SEASON_URL}" size="60" maxlength="100"
<!-- IF not S_ALLOW_URL_FOPEN --> DISABLED <!-- ENDIF -->/> <!-- IF not S_ALLOW_URL_FOPEN --> DISABLED <!-- ENDIF -->/>
<input class="button1" type="submit" id="load_xml_season" name="load_xml_season" value="{L_LOAD}" />&nbsp; <input class="button1" type="submit" id="load_xml_season" name="load_xml_season" value="{L_LOAD}" />&nbsp;
<!-- IF not S_ALLOW_URL_FOPEN --> <!-- IF not S_ALLOW_URL_FOPEN -->
<br /> <span style="color: red;">{L_ALLOW_URL_FOPEN}</span> <br /> <span style="color: red;">{L_ALLOW_URL_FOPEN}</span>
<!-- ENDIF --> <!-- ENDIF -->
</dd> </dd>
</dl> </dl>
</fieldset> </fieldset>
</form> </form>
<!-- IF S_CHOOSE --> <!-- IF S_CHOOSE -->
<form method="post" action="{U_CHOOSE_ACTION}"> <form method="post" action="{U_CHOOSE_ACTION}">
<fieldset> <fieldset>
<legend>{L_CHOOSE_LEAGUES}</legend> <legend>{L_CHOOSE_LEAGUES}</legend>
<dl> <dl>
<dt><label for="xs">{L_SOURCE}:</label></dt> <dt><label for="xs">{L_SOURCE}:</label></dt>
<dd> <dd>
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<input type="hidden" name="xml_season_url" value="{XML_SEASON_URL}" /> <input type="hidden" name="xml_season_url" value="{XML_SEASON_URL}" />
<input type="hidden" name="league_name" value="{S_LEAGUE_NAME}" /> <input type="hidden" name="league_name" value="{S_LEAGUE_NAME}" />
<input type="hidden" name="xcode" value="{S_XCODE}" /> <input type="hidden" name="xcode" value="{S_XCODE}" />
<select name="xs" id="xs" onchange="this.form.submit();">{S_XSEASON_OPTIONS}</select> <select name="xs" id="xs" onchange="this.form.submit();">{S_XSEASON_OPTIONS}</select>
</div> </div>
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="xl" id="xl" onchange="this.form.submit();">{S_XLEAGUE_OPTIONS}</select> <select name="xl" id="xl" onchange="this.form.submit();">{S_XLEAGUE_OPTIONS}</select>
</div> </div>
</dd> </dd>
</dl> </dl>
<dl> <dl>
<dt><label for="s">{L_TARGET}:</label></dt> <dt><label for="s">{L_TARGET}:</label></dt>
<dd> <dd>
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="s" id="season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select> <select name="s" id="season" onchange="this.form.submit();">{S_SEASON_OPTIONS}</select>
</div> </div>
<div style="display:inline; margin:0; padding:0;"> <div style="display:inline; margin:0; padding:0;">
<select name="l" id="league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select> <select name="l" id="league" onchange="this.form.submit();">{S_LEAGUE_OPTIONS}</select>
</div> </div>
<div title="{L_NEW_LEAGUE_EXPLAIN}" style="display:inline; margin:0; padding:0;"> <div title="{L_NEW_LEAGUE_EXPLAIN}" style="display:inline; margin:0; padding:0;">
<input name="new_league" type="text" id="new_league" value="{NEW_LEAGUE}" size="2" maxlength="2" /> <input name="new_league" type="text" id="new_league" value="{NEW_LEAGUE}" size="2" maxlength="2" />
</div> </div>
</dd> </dd>
</dl> </dl>
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<!-- IF S_LEAGUE --> <!-- IF S_LEAGUE -->
<input class="button1" type="submit" id="team_mapping" name="team_mapping" value="{L_COMPARE_UPDATE}" />&nbsp; <input class="button1" type="submit" id="team_mapping" name="team_mapping" value="{L_COMPARE_UPDATE}" />&nbsp;
<!-- ELSE --> <!-- ELSE -->
<input class="button1" type="submit" id="load_xml_league" name="load_xml_league" value="{L_SHOW_UPDATE}" />&nbsp; <input class="button1" type="submit" id="load_xml_league" name="load_xml_league" value="{L_SHOW_UPDATE}" />&nbsp;
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_TEAMS --> <!-- IF S_TEAMS -->
<form id="teams" method="post" action="{U_ACTION}"> <form id="teams" method="post" action="{U_ACTION}">
<fieldset> <fieldset>
<legend>{L_TEAM_MAPPING}</legend> <legend>{L_TEAM_MAPPING}</legend>
<!-- IF S_MISSING_TEAMS --><span style="color: red;">{S_MISSING_TEAMS}</span><!-- ENDIF --> <!-- IF S_MISSING_TEAMS --><span style="color: red;">{S_MISSING_TEAMS}</span><!-- ENDIF -->
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_TEAM}</th> <th>{L_TEAM}</th>
<th style="width: 25%">{L_TEAM_NAME}</th> <th style="width: 25%">{L_TEAM_NAME}</th>
<th>{L_TEAM_NAME_SHORT}</th> <th>{L_TEAM_NAME_SHORT}</th>
<th>{L_TEAM_MAPPING}</th> <th>{L_TEAM_MAPPING}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN teams --> <!-- BEGIN teams -->
<tr class="{teams.ROW_CLASS}"> <tr class="{teams.ROW_CLASS}">
<td>{teams.TEAM_ID_XML}</td> <td>{teams.TEAM_ID_XML}</td>
<td><img src="{teams.TEAM_IMAGE_XML}" id="teamsymbol" alt="{teams.TEAM_NAME_XML}" title="{teams.TEAM_NAME_XML}" />&nbsp;&nbsp;&nbsp; <td><img src="{teams.TEAM_IMAGE_XML}" id="teamsymbol" alt="{teams.TEAM_NAME_XML}" title="{teams.TEAM_NAME_XML}" />&nbsp;&nbsp;&nbsp;
{teams.TEAM_NAME_XML} {teams.TEAM_NAME_XML}
</td> </td>
<td>{teams.TEAM_NAME_SHORT_XML}</td> <td>{teams.TEAM_NAME_SHORT_XML}</td>
<td <!-- IF teams.DUPLICATE_TEAM -->title="{L_DUPLICATE_TEAM}" bgcolor=#ECD5D8<!-- ENDIF -->> <td <!-- IF teams.DUPLICATE_TEAM -->title="{L_DUPLICATE_TEAM}" bgcolor=#ECD5D8<!-- ENDIF -->>
<select name="team_id_db_{teams.TEAM_ID_XML}" id="team_id_{teams.TEAM_ID_XML}" onchange="this.form.submit();">{teams.TEAM_OPTIONS}</select> <select name="team_id_db_{teams.TEAM_ID_XML}" id="team_id_{teams.TEAM_ID_XML}" onchange="this.form.submit();">{teams.TEAM_OPTIONS}</select>
</td> </td>
</tr> </tr>
<!-- END teams --> <!-- END teams -->
</tbody> </tbody>
</table> </table>
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input type="hidden" name="xml_season_url" value="{XML_SEASON_URL}" /> <input type="hidden" name="xml_season_url" value="{XML_SEASON_URL}" />
<input type="hidden" name="league_name" value="{S_LEAGUE_NAME}" /> <input type="hidden" name="league_name" value="{S_LEAGUE_NAME}" />
<input type="hidden" name="xml_ary" value="{XML_ARY}" /> <input type="hidden" name="xml_ary" value="{XML_ARY}" />
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="xs" value="{S_XSEASON}" /> <input type="hidden" name="xs" value="{S_XSEASON}" />
<input type="hidden" name="xl" value="{S_XLEAGUE}" /> <input type="hidden" name="xl" value="{S_XLEAGUE}" />
<input type="hidden" name="xcode" value="{S_XCODE}" /> <input type="hidden" name="xcode" value="{S_XCODE}" />
<input class="button1" type="submit" id="submit" name="map_teams" value="{L_MAP_TEAMS}" />&nbsp; <input class="button1" type="submit" id="submit" name="map_teams" value="{L_MAP_TEAMS}" />&nbsp;
<input class="button1" type="submit" id="submit" name="choose" value="{L_CHOOSE_OTHER_LEAGUE}" />&nbsp; <input class="button1" type="submit" id="submit" name="choose" value="{L_CHOOSE_OTHER_LEAGUE}" />&nbsp;
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
</form> </form>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_LIST --> <!-- IF S_LIST -->
<form id="list" method="post" action="{U_ACTION}"> <form id="list" method="post" action="{U_ACTION}">
<!-- IF S_INSERT_LEAGUE --><h1>{L_INSERT_LEAGUE}</h3><!-- ELSE --><h1>{L_UPDATE_LEAGUE}</h3><!-- ENDIF --> <!-- IF S_INSERT_LEAGUE --><h1>{L_INSERT_LEAGUE}</h3><!-- ELSE --><h1>{L_UPDATE_LEAGUE}</h3><!-- ENDIF -->
<fieldset> <fieldset>
<dl> <dl>
<dt><label for="xml_season_url">{L_SEASON}:</label></dt> <dt><label for="xml_season_url">{L_SEASON}:</label></dt>
<dd>{S_SEASON}</dd> <dd>{S_SEASON}</dd>
</dl> </dl>
<dl> <dl>
<dt><label for="xml_season_url">{L_LEAGUE}:</label></dt> <dt><label for="xml_season_url">{L_LEAGUE}:</label></dt>
<dd>{S_LEAGUE}</dd> <dd>{S_LEAGUE}</dd>
</dl> </dl>
<dl> <dl>
<dt><label for="xml_season_url">{L_LEAGUE_NAME}:</label></dt> <dt><label for="xml_season_url">{L_LEAGUE_NAME}:</label></dt>
<dd>{S_LEAGUE_NAME}</dd> <dd>{S_LEAGUE_NAME}</dd>
</dl> </dl>
</fieldset> </fieldset>
<!-- IF S_INSERT_SEASON --> <!-- IF S_INSERT_SEASON -->
<fieldset> <fieldset>
<legend>{L_INSERT_SEASON}</legend> <legend>{L_INSERT_SEASON}</legend>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_SEASON}</th> <th>{L_SEASON}</th>
<th>{L_SEASON_NAME}</th> <th>{L_SEASON_NAME}</th>
<th>{L_SEASON_SHORT}</th> <th>{L_SEASON_SHORT}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN footb_seasons --> <!-- BEGIN footb_seasons -->
{footb_seasons.TPL} {footb_seasons.TPL}
<!-- END footb_seasons --> <!-- END footb_seasons -->
</tbody> </tbody>
</table> </table>
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_INSERT_LEAGUE --> <!-- IF S_INSERT_LEAGUE -->
<fieldset> <fieldset>
<legend>{L_INSERT_LEAGUE}</legend> <legend>{L_INSERT_LEAGUE}</legend>
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th style="width: 20%">{L_LEAGUE_NAME}</th> <th style="width: 20%">{L_LEAGUE_NAME}</th>
<th>{L_LEAGUE_SHORTCUT}</th> <th>{L_LEAGUE_SHORTCUT}</th>
<th>{L_LEAGUE_TYPE}</th> <th>{L_LEAGUE_TYPE}</th>
<th>{L_LEAGUE_MATCHDAYS}</th> <th>{L_LEAGUE_MATCHDAYS}</th>
<th>{L_LEAGUE_MATCHES}</th> <th>{L_LEAGUE_MATCHES}</th>
<th>{L_LEAGUE_POINTS_MODE}</th> <th>{L_LEAGUE_POINTS_MODE}</th>
<th>{L_LEAGUE_BET_IN_TIME}</th> <th>{L_LEAGUE_BET_IN_TIME}</th>
<th>{L_BET_TYPE_KO}</th> <th>{L_BET_TYPE_KO}</th>
<th>{L_OTHER_FIELDS}</th> <th>{L_OTHER_FIELDS}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN footb_leagues --> <!-- BEGIN footb_leagues -->
{footb_leagues.TPL} {footb_leagues.TPL}
<!-- END footb_leagues --> <!-- END footb_leagues -->
</tbody> </tbody>
</table> </table>
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .footb_matchdays --> <!-- IF .footb_matchdays -->
<fieldset> <fieldset>
<legend>{DO_MATCHDAYS}</legend> <legend>{DO_MATCHDAYS}</legend>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_MATCHDAY}</th> <th>{L_MATCHDAY}</th>
<th>{L_MATCHDAY_STATUS} <th>{L_MATCHDAY_STATUS}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matchdays_status" id="update_matchdays_status" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matchdays_status" id="update_matchdays_status" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_MATCHDAY_DELIVERY} <th>{L_MATCHDAY_DELIVERY}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matchdays_delivery_date" id="update_matchdays_delivery_date" type="checkbox" class="radio" /> <input title="{L_UPDATE_THIS}" name="update_matchdays_delivery_date" id="update_matchdays_delivery_date" type="checkbox" class="radio" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_MATCHDAY_DELIVERY} 2 <th>{L_MATCHDAY_DELIVERY} 2
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matchdays_delivery_date_2" id="update_matchdays_delivery_date_2" type="checkbox" class="radio" /> <input title="{L_UPDATE_THIS}" name="update_matchdays_delivery_date_2" id="update_matchdays_delivery_date_2" type="checkbox" class="radio" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_MATCHDAY_DELIVERY} 3 <th>{L_MATCHDAY_DELIVERY} 3
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matchdays_delivery_date_3" id="update_matchdays_delivery_date_3" type="checkbox" class="radio" /> <input title="{L_UPDATE_THIS}" name="update_matchdays_delivery_date_3" id="update_matchdays_delivery_date_3" type="checkbox" class="radio" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th style="width: 25%">{L_MATCHDAY_NAME} <th style="width: 25%">{L_MATCHDAY_NAME}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matchdays_matchday_name" id="update_matchdays_matchday_name" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matchdays_matchday_name" id="update_matchdays_matchday_name" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_MATCHES} <th>{L_MATCHES}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matchdays_matches" id="update_matchdays_matches" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matchdays_matches" id="update_matchdays_matches" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}</th> <th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}</th>
<!-- ENDIF --> <!-- ENDIF -->
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN footb_matchdays --> <!-- BEGIN footb_matchdays -->
{footb_matchdays.TPL} {footb_matchdays.TPL}
<!-- END footb_matchdays --> <!-- END footb_matchdays -->
</tbody> </tbody>
</table> </table>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'FOOTB_MATCHDAYS_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .footb_teams --> <!-- IF .footb_teams -->
<fieldset> <fieldset>
<legend>{DO_TEAMS}</legend> <legend>{DO_TEAMS}</legend>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_TEAM}</th> <th>{L_TEAM}</th>
<th style="width: 25%">{L_TEAM_NAME} <th style="width: 25%">{L_TEAM_NAME}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_teams_team_name" id="update_teams_team_nmae" type="checkbox" class="radio" /> <input title="{L_UPDATE_THIS}" name="update_teams_team_name" id="update_teams_team_nmae" type="checkbox" class="radio" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_TEAM_NAME_SHORT} <th>{L_TEAM_NAME_SHORT}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_teams_team_name_short" id="update_teams_team_name_short" type="checkbox" class="radio" /> <input title="{L_UPDATE_THIS}" name="update_teams_team_name_short" id="update_teams_team_name_short" type="checkbox" class="radio" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_TEAM_SYMBOL} <th>{L_TEAM_SYMBOL}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_teams_team_symbol" id="update_teams_team_symbol" type="checkbox" class="radio" /> <input title="{L_UPDATE_THIS}" name="update_teams_team_symbol" id="update_teams_team_symbol" type="checkbox" class="radio" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_GROUP} <th>{L_GROUP}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_teams_group_id" id="update_teams_group_id" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_teams_group_id" id="update_teams_group_id" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_MATCHDAY} <th>{L_MATCHDAY}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_teams_matchday" id="update_teams_matchday" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_teams_matchday" id="update_teams_matchday" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}</th> <th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}</th>
<!-- ENDIF --> <!-- ENDIF -->
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN footb_teams --> <!-- BEGIN footb_teams -->
{footb_teams.TPL} {footb_teams.TPL}
<!-- END footb_teams --> <!-- END footb_teams -->
</tbody> </tbody>
</table> </table>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'FOOTB_TEAMS_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .footb_matches --> <!-- IF .footb_matches -->
<fieldset> <fieldset>
<legend>{DO_MATCHES}</legend> <legend>{DO_MATCHES}</legend>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<p class="small"><input name="update_neg_status" id="update_neg_status" type="checkbox" class="radio" {S_CHECK_NEG_STATUS} /> {L_UPDATE_NEG_STATUS}</p> <p class="small"><input name="update_neg_status" id="update_neg_status" type="checkbox" class="radio" {S_CHECK_NEG_STATUS} /> {L_UPDATE_NEG_STATUS}</p>
<p class="small"><input name="update_same_status" id="update_same_status" type="checkbox" class="radio" {S_CHECK_SAME_STATUS} /> {L_UPDATE_SAME_STATUS}</p> <p class="small"><input name="update_same_status" id="update_same_status" type="checkbox" class="radio" {S_CHECK_SAME_STATUS} /> {L_UPDATE_SAME_STATUS}</p>
<p class="small"><input name="update_only_final" id="update_only_final" type="checkbox" class="radio" {S_CHECK_ONLY_FINAL} /> {L_UPDATE_ONLY_FINAL}</p> <p class="small"><input name="update_only_final" id="update_only_final" type="checkbox" class="radio" {S_CHECK_ONLY_FINAL} /> {L_UPDATE_ONLY_FINAL}</p>
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
<table class="type_f"> <table class="type_f">
<thead> <thead>
<tr> <tr>
<th>{L_MATCHDAY} <th>{L_MATCHDAY}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_matchday" id="update_matches_matchday" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_matchday" id="update_matches_matchday" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
{L_MATCH_NUMBER} {L_MATCH_NUMBER}
</th> </th>
<th>{L_MATCH_BEGIN} <th>{L_MATCH_BEGIN}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_match_datetime" id="update_matches_match_datetime" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_match_datetime" id="update_matches_match_datetime" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
{L_MATCH_OF_GROUP} {L_MATCH_OF_GROUP}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_group_id" id="update_matches_group_id" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_group_id" id="update_matches_group_id" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_MATCH_HOME} <th>{L_MATCH_HOME}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_team_id_home" id="update_matches_team_id_home" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_team_id_home" id="update_matches_team_id_home" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
{L_MATCH_GUEST} {L_MATCH_GUEST}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_team_id_guest" id="update_matches_team_id_guest" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_team_id_guest" id="update_matches_team_id_guest" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --> <!-- ENDIF -->
</th> </th>
<th>{L_RESULT} <th>{L_RESULT}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_goals" id="update_matches_goals" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_goals" id="update_matches_goals" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
&nbsp; &nbsp;
</th> </th>
<th>{L_EXTRATIME_SHORT} <th>{L_EXTRATIME_SHORT}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_goals_overtime" id="update_matches_goals_overtime" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_goals_overtime" id="update_matches_goals_overtime" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
&nbsp; &nbsp;
</th> </th>
<th>{L_FORMULA} <th>{L_FORMULA}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_formula" id="update_matches_formula" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_formula" id="update_matches_formula" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
&nbsp; &nbsp;
</th> </th>
<th>{L_STATUS} <th>{L_STATUS}
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<input title="{L_UPDATE_THIS}" name="update_matches_status" id="update_matches_status" type="checkbox" class="radio" checked="checked" /> <input title="{L_UPDATE_THIS}" name="update_matches_status" id="update_matches_status" type="checkbox" class="radio" checked="checked" />
<!-- ENDIF --><br /> <!-- ENDIF --><br />
{L_KO} {L_KO}
</th> </th>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}<br /> <th title="{L_SELECT_EXPLAIN}" style="text-align:center">{L_SELECT}<br />
&nbsp; &nbsp;
</th> </th>
<!-- ENDIF --> <!-- ENDIF -->
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- BEGIN footb_matches --> <!-- BEGIN footb_matches -->
{footb_matches.TPL} {footb_matches.TPL}
<!-- END footb_matches --> <!-- END footb_matches -->
</tbody> </tbody>
</table> </table>
<!-- IF not S_INSERT_LEAGUE --> <!-- IF not S_INSERT_LEAGUE -->
<p class="small" style="text-align:right;margin-bottom:0px"> <p class="small" style="text-align:right;margin-bottom:0px">
<a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', true); return false;">{L_MARK_ALL}</a> &bull;
<a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', false); return false;">{L_UNMARK_ALL}</a> <a href="#" onclick="marklist('list', 'FOOTB_MATCHES_', false); return false;">{L_UNMARK_ALL}</a>
</p> </p>
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .footb_matchdays or .footb_teams or .footb_matches --> <!-- IF .footb_matchdays or .footb_teams or .footb_matches -->
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{L_SUBMIT}</legend>
<input type="hidden" name="xml_ary" value="{XML_ARY}" /> <input type="hidden" name="xml_ary" value="{XML_ARY}" />
<input type="hidden" name="s" value="{S_SEASON}" /> <input type="hidden" name="s" value="{S_SEASON}" />
<input type="hidden" name="l" value="{S_LEAGUE}" /> <input type="hidden" name="l" value="{S_LEAGUE}" />
<input type="hidden" name="league_name" value="{S_LEAGUE_NAME}" /> <input type="hidden" name="league_name" value="{S_LEAGUE_NAME}" />
<input type="hidden" name="xcode" value="{S_XCODE}" /> <input type="hidden" name="xcode" value="{S_XCODE}" />
<!-- IF S_INSERT_LEAGUE --> <!-- IF S_INSERT_LEAGUE -->
<input class="button1" type="submit" id="submit" name="insert" value="{L_INSERT_LEAGUE}" />&nbsp; <input class="button1" type="submit" id="submit" name="insert" value="{L_INSERT_LEAGUE}" />&nbsp;
<!-- ELSE --> <!-- ELSE -->
<input class="button1" type="submit" id="submit" name="update" value="{L_UPDATE_LEAGUE}" />&nbsp; <input class="button1" type="submit" id="submit" name="update" value="{L_UPDATE_LEAGUE}" />&nbsp;
<!-- ENDIF --> <!-- ENDIF -->
{S_FORM_TOKEN} {S_FORM_TOKEN}
</fieldset> </fieldset>
<!-- ELSE --> <!-- ELSE -->
<div class="successbox"> <div class="successbox">
<h3>{L_ADVICE}</h3> <h3>{L_ADVICE}</h3>
<p>{L_NO_DIFFERENCES}</p> <p>{L_NO_DIFFERENCES}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
</form> </form>
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,44 +1,44 @@
<!-- INCLUDECSS css/football_acp.css --> <!-- INCLUDECSS css/football_acp.css -->
<!-- INCLUDE overall_header.html --> <!-- INCLUDE overall_header.html -->
<a id="maincontent"></a> <a id="maincontent"></a>
<!-- IF S_IN_FOOTBALL_USERGUIDE --> <!-- IF S_IN_FOOTBALL_USERGUIDE -->
<!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF --> <!-- IF U_FOOTBALL --><a href="{U_FOOTBALL}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_PREDICTION_LEAGUE}</a><!-- ENDIF -->
<!-- IF S_ERROR --> <!-- IF S_ERROR -->
<div class="errorbox"> <div class="errorbox">
<h3>{L_WARNING}</h3> <h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p> <p>{ERROR_MSG}</p>
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<h1>{L_ACP_FOOTBALL} - {L_ACP_FOOTBALL_USERGUIDE}</h1> <h1>{L_ACP_FOOTBALL} - {L_ACP_FOOTBALL_USERGUIDE}</h1>
<p>{L_ACP_FOOTBALL_USERGUIDE_EXPLAIN}</p> <p>{L_ACP_FOOTBALL_USERGUIDE_EXPLAIN}</p>
<fieldset id="userguidelinks"> <fieldset id="userguidelinks">
<!-- BEGIN userguide_block --> <!-- BEGIN userguide_block -->
<div style="font-size: 0.85em; padding-bottom: 5px; margin-bottom: 0.7em; line-height: 1.40em;"><strong>{userguide_block.BLOCK_TITLE}</strong><br /> <div style="font-size: 0.85em; padding-bottom: 5px; margin-bottom: 0.7em; line-height: 1.40em;"><strong>{userguide_block.BLOCK_TITLE}</strong><br />
<!-- BEGIN userguide_row --> <!-- BEGIN userguide_row -->
<a href="#ug{userguide_block.S_ROW_COUNT}{userguide_block.userguide_row.S_ROW_COUNT}">{userguide_block.userguide_row.USERGUIDE_QUESTION}</a><br /> <a href="#ug{userguide_block.S_ROW_COUNT}{userguide_block.userguide_row.S_ROW_COUNT}">{userguide_block.userguide_row.USERGUIDE_QUESTION}</a><br />
<!-- END userguide_row --> <!-- END userguide_row -->
</div> </div>
<!-- END userguide_block --> <!-- END userguide_block -->
</fieldset> </fieldset>
<!-- BEGIN userguide_block --> <!-- BEGIN userguide_block -->
<fieldset> <fieldset>
<h2>{userguide_block.BLOCK_TITLE}</h2> <h2>{userguide_block.BLOCK_TITLE}</h2>
<!-- BEGIN userguide_row --> <!-- BEGIN userguide_row -->
<div style="font-size: 0.85em; padding-bottom: 5px; margin-bottom: 0.7em; line-height: 1.40em;"> <div style="font-size: 0.85em; padding-bottom: 5px; margin-bottom: 0.7em; line-height: 1.40em;">
<span id="ug{userguide_block.S_ROW_COUNT}{userguide_block.userguide_row.S_ROW_COUNT}"> <span id="ug{userguide_block.S_ROW_COUNT}{userguide_block.userguide_row.S_ROW_COUNT}">
<strong>{userguide_block.userguide_row.USERGUIDE_QUESTION}</strong></span><br /> <strong>{userguide_block.userguide_row.USERGUIDE_QUESTION}</strong></span><br />
{userguide_block.userguide_row.USERGUIDE_ANSWER}<br /><br /> {userguide_block.userguide_row.USERGUIDE_ANSWER}<br /><br />
<a href="#userguidelinks">{ICON_BACK_TO_TOP}&nbsp;{L_BACK_TO_TOP}</a> <a href="#userguidelinks">{ICON_BACK_TO_TOP}&nbsp;{L_BACK_TO_TOP}</a>
</div> </div>
<!-- IF not userguide_block.userguide_row.S_LAST_ROW --><hr class="dashed" /><!-- ENDIF --> <!-- IF not userguide_block.userguide_row.S_LAST_ROW --><hr class="dashed" /><!-- ENDIF -->
<!-- END userguide_row --> <!-- END userguide_row -->
</fieldset> </fieldset>
<!-- END userguide_block --> <!-- END userguide_block -->
<!-- ENDIF --> <!-- ENDIF -->
<br /> <br />
<div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div> <div style="text-align: center;">phpBB Extension - Football Prediction League - Version {S_VERSION_NO} &copy; 2016 <a href="http://football.bplaced.net">football</a></div>
<!-- INCLUDE overall_footer.html --> <!-- INCLUDE overall_footer.html -->

View File

@@ -1,87 +1,87 @@
/* ----------------------------------------------------------------------------------------- /* -----------------------------------------------------------------------------------------
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* ----------------------------------------------------------------------------------------- */ * ----------------------------------------------------------------------------------------- */
/* Table for football data */ /* Table for football data */
/* Specific column styles */ /* Specific column styles */
table.type_f thead th { font-weight:normal; text-transform:uppercase; line-height:1.3em; padding:0 4px 2px 4px; } table.type_f thead th { font-weight:normal; text-transform:uppercase; line-height:1.3em; padding:0 4px 2px 4px; }
table.type_f thead th span { padding-left:7px; } table.type_f thead th span { padding-left:7px; }
table.type_f tfoot td { table.type_f tfoot td {
padding: 3px 4px; padding: 3px 4px;
color: #FFFFFF; color: #FFFFFF;
background: #70AED3 url("../images/gradient2b.gif") bottom left repeat-x; background: #70AED3 url("../images/gradient2b.gif") bottom left repeat-x;
border-bottom: 1px solid #6DACD2; border-bottom: 1px solid #6DACD2;
border-top: 1px solid #327AA5; border-top: 1px solid #327AA5;
text-align: left; text-align: left;
font-size: 0.75em; font-size: 0.75em;
text-transform: uppercase; text-transform: uppercase;
} }
table.type_f tbody tr:hover, table.type_f tbody tr:hover,
table.type_f tbody tr.hover { table.type_f tbody tr.hover {
background-color: #FFFFFF; color: #000000; background-color: #FFFFFF; color: #000000;
} }
table.type_f body td { padding: 1px 2px; border-top: 1px solid #FAFAFA; } table.type_f body td { padding: 1px 2px; border-top: 1px solid #FAFAFA; }
table.type_f tbody th { padding:1px 2px; border-top: 1px solid #000000; background-color: #BFC1CF; } table.type_f tbody th { padding:1px 2px; border-top: 1px solid #000000; background-color: #BFC1CF; }
table.type_f tbody tr { border: 1px solid #cfcfcf; } table.type_f tbody tr { border: 1px solid #cfcfcf; }
th.td_tendency { text-align: center; padding: 4px 2px 0 2px; font-weight: bold; } th.td_tendency { text-align: center; padding: 4px 2px 0 2px; font-weight: bold; }
th.td_pts_total { text-align: right; padding: 4px 4px 0 2px; } th.td_pts_total { text-align: right; padding: 4px 4px 0 2px; }
td.td_rank { text-align: right; } td.td_rank { text-align: right; }
td.td_group { text-align: center; } td.td_group { text-align: center; }
td.td_hits { text-align: center; } td.td_hits { text-align: center; }
td.td_wins { text-align: right; padding: 0 2px 0 4px; } td.td_wins { text-align: right; padding: 0 2px 0 4px; }
td.td_match_no { text-align: right; } td.td_match_no { text-align: right; }
td.td_logo { text-align: center; } td.td_logo { text-align: center; }
td.td_team { text-align: left; padding: 0 1em 0 2px; } td.td_team { text-align: left; padding: 0 1em 0 2px; }
td.td_team_home { text-align: right; width: 155px; } td.td_team_home { text-align: right; width: 155px; }
td.td_team_guest { text-align: left; width: 155px; } td.td_team_guest { text-align: left; width: 155px; }
td.td_vs { text-align: center; max-width: 1em; padding: 0; } td.td_vs { text-align: center; max-width: 1em; padding: 0; }
td.td_goals_home { text-align: right; max-width: 3em; padding: 0;} td.td_goals_home { text-align: right; max-width: 3em; padding: 0;}
td.td_goals_guest { text-align: left; max-width: 3em; padding: 0; white-space: nowrap;} td.td_goals_guest { text-align: left; max-width: 3em; padding: 0; white-space: nowrap;}
td.td_pts { text-align: right; padding: 0 2px 0 2px; } td.td_pts { text-align: right; padding: 0 2px 0 2px; }
td.td_button { text-align: right; padding-right: 4px; } td.td_button { text-align: right; padding-right: 4px; }
td.td_result { text-align: center; } td.td_result { text-align: center; }
td.td_season { text-align: center; } td.td_season { text-align: center; }
td.td_league { text-align: center; } td.td_league { text-align: center; }
td.td_pts_total { text-align: right; padding: 0 4px 0 2px; } td.td_pts_total { text-align: right; padding: 0 4px 0 2px; }
td.td_points { text-align: right; padding: 0 2em 0 2px; } td.td_points { text-align: right; padding: 0 2em 0 2px; }
td.td_fp { text-align: center; } td.td_fp { text-align: center; }
td.td_matches { text-align: center; } td.td_matches { text-align: center; }
td.td_diff { text-align: right; } td.td_diff { text-align: right; }
td.td_counter { text-align: right; } td.td_counter { text-align: right; }
td.td_name { text-align: left; } td.td_name { text-align: left; }
table.rank td.color_finally, table.football .color_finally, .color_finally , table.football .match_win, .match_win { table.rank td.color_finally, table.football .color_finally, .color_finally , table.football .match_win, .match_win {
font-weight: bold; font-weight: bold;
color: #00AA00; color: #00AA00;
} }
table.rank td.color_provisionally, table.football .color_provisionally, .color_provisionally , table.football .match_lost, .match_lost { table.rank td.color_provisionally, table.football .color_provisionally, .color_provisionally , table.football .match_lost, .match_lost {
font-weight: bold; font-weight: bold;
color: #AA0000; color: #AA0000;
} }
table.football .match_draw, .match_draw { table.football .match_draw, .match_draw {
font-weight: bold; font-weight: bold;
color: #6A6A6A; color: #6A6A6A;
} }
table.rank td.color_not_rated, table.football .color_not_rated, .color_not_rated { table.rank td.color_not_rated, table.football .color_not_rated, .color_not_rated {
font-weight: bold; font-weight: bold;
color: purple; color: purple;
} }
/* Background colors where the tables iterate between two colors or mark user*/ /* Background colors where the tables iterate between two colors or mark user*/
.row_light { background-color: #e1ebf2; } .row_light { background-color: #e1ebf2; }
.row_dark { background-color: #cadceb; } .row_dark { background-color: #cadceb; }
.row_user { background-color: #99CC99; } .row_user { background-color: #99CC99; }
.row_group td { background-color: #12A3EB; color: #FFFFFF !important; } .row_group td { background-color: #12A3EB; color: #FFFFFF !important; }
.row_result { background-color: #BFC1CF; } .row_result { background-color: #BFC1CF; }
.row_result td { padding: 1px 2px; } .row_result td { padding: 1px 2px; }
.message { .message {
font-weight: bold; font-weight: bold;
color: #AA0000; color: #AA0000;
} }

View File

@@ -1,13 +1,13 @@
<!-- IF 0 --> <!-- IF 0 -->
Diese Datei existiert doppelt: Einmal im fooball\football\styles\prsilver\template und einmal im fooball\football\adm\style Ordner Diese Datei existiert doppelt: Einmal im fooball\football\styles\prsilver\template und einmal im fooball\football\adm\style Ordner
Mit Hilfe dieser Datei werden Fussballergebnisse zum Abgleich und schnelleren Erfassung von externen Seiten, Mit Hilfe dieser Datei werden Fussballergebnisse zum Abgleich und schnelleren Erfassung von externen Seiten,
wie z.B. den Weltfussball.de Torverteiler, eingebunden. wie z.B. den Weltfussball.de Torverteiler, eingebunden.
Wenn ihr einen Weltfussball.de Account habt, könnt ihr dort in der Community einen Torverteiler erstellen und den Code hier Wenn ihr einen Weltfussball.de Account habt, könnt ihr dort in der Community einen Torverteiler erstellen und den Code hier
unter der entsprechenden Liganummer reinhängen (also 999999 mit der Liganummer bzw. wfb_tv_id ersetzen). unter der entsprechenden Liganummer reinhängen (also 999999 mit der Liganummer bzw. wfb_tv_id ersetzen).
Der Frame wird dann bei der Ergebnisseingabe in der Liga angezeigt, wenn der Spieltag editierbar ist. Der Frame wird dann bei der Ergebnisseingabe in der Liga angezeigt, wenn der Spieltag editierbar ist.
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_EDIT_MODE --> <!-- IF S_EDIT_MODE -->
<!-- IF S_LEAGUE == 999999 --> <!-- IF S_LEAGUE == 999999 -->
<div id="tor_v1" style="width:400px;text-align:right;font-family:Arial,Helvetica,Verdana,sans-serif;color:#000000;font-size:8pt;background-color:#cadceb;"><div id="iTorV1"></div>Der Torverteiler - pr&auml;sentiert von <a href="http://www.weltfussball.de/" target="_blank">weltfussball.de</a>&nbsp;<br />Alles &uuml;ber <a href="http://www.weltfussball.de/" target="_blank">Fu&szlig;ball</a> oder direkt zur <a href="http://www.weltfussball.de/wettbewerb/bundesliga/">Bundesliga</a>&nbsp;</div><script type="text/javascript">var wfb_tv_id="999999";</script><script id="wfb_link" type="text/javascript" src="http://www.weltfussball.de/js/get_tv.js"></script> <div id="tor_v1" style="width:400px;text-align:right;font-family:Arial,Helvetica,Verdana,sans-serif;color:#000000;font-size:8pt;background-color:#cadceb;"><div id="iTorV1"></div>Der Torverteiler - pr&auml;sentiert von <a href="http://www.weltfussball.de/" target="_blank">weltfussball.de</a>&nbsp;<br />Alles &uuml;ber <a href="http://www.weltfussball.de/" target="_blank">Fu&szlig;ball</a> oder direkt zur <a href="http://www.weltfussball.de/wettbewerb/bundesliga/">Bundesliga</a>&nbsp;</div><script type="text/javascript">var wfb_tv_id="999999";</script><script id="wfb_link" type="text/javascript" src="http://www.weltfussball.de/js/get_tv.js"></script>
<!-- ENDIF --> <!-- ENDIF -->
<!-- ENDIF --> <!-- ENDIF -->

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -118,7 +118,7 @@ $sql_limit = $config['football_users_per_page'] * $count_matches;
// If we've got a hightlight set pass it on to pagination. // If we've got a hightlight set pass it on to pagination.
// handle pagination. // handle pagination.
$base_url = $this->helper->route('football_main_controller', array('side' => 'all_bets', 's' => $season, 'l' => $league, 'm' => $matchday)); $base_url = $this->helper->route('football_football_controller', array('side' => 'all_bets', 's' => $season, 'l' => $league, 'm' => $matchday));
$pagination = $phpbb_container->get('pagination'); $pagination = $phpbb_container->get('pagination');
if ($user->data['football_mobile']) if ($user->data['football_mobile'])
{ {
@@ -152,8 +152,8 @@ if ($count_matches > 0)
LEFT JOIN ' . USERS_TABLE . ' AS u ON (u.user_id = b.user_id) LEFT JOIN ' . USERS_TABLE . ' AS u ON (u.user_id = b.user_id)
LEFT JOIN ' . FOOTB_MATCHES . ' AS m2 ON (m2.season = m.season AND m2.league = m.league + 50 AND m2.matchday = m.matchday AND m2.team_id_home = b.user_id + 2000) LEFT JOIN ' . FOOTB_MATCHES . ' AS m2 ON (m2.season = m.season AND m2.league = m.league + 50 AND m2.matchday = m.matchday AND m2.team_id_home = b.user_id + 2000)
LEFT JOIN ' . FOOTB_MATCHES . " AS m3 ON (m3.season = m.season AND m3.league = m.league + 50 AND m3.matchday = m.matchday AND m3.team_id_guest = b.user_id + 2000) LEFT JOIN ' . FOOTB_MATCHES . " AS m3 ON (m3.season = m.season AND m3.league = m.league + 50 AND m3.matchday = m.matchday AND m3.team_id_guest = b.user_id + 2000)
WHERE m.season = $season WHERE m.season = $season
AND m.league = $league AND m.league = $league
AND m.matchday = $matchday AND m.matchday = $matchday
ORDER BY IFNULL(m2.match_no,m3.match_no) ASC, m3.match_no ASC, LOWER(u.username) ASC, m.match_datetime ASC, m.match_no ASC"; ORDER BY IFNULL(m2.match_no,m3.match_no) ASC, m3.match_no ASC, LOWER(u.username) ASC, m.match_datetime ASC, m.match_no ASC";
} }
@@ -172,8 +172,8 @@ if ($count_matches > 0)
LEFT JOIN ' . USERS_TABLE . ' AS u ON (u.user_id = b.user_id) LEFT JOIN ' . USERS_TABLE . ' AS u ON (u.user_id = b.user_id)
LEFT JOIN ' . FOOTB_MATCHES . ' AS m2 ON (m2.season = m.season AND m2.league = m.league + 50 AND m2.matchday = m.matchday AND m2.team_id_home = b.user_id + 2000) LEFT JOIN ' . FOOTB_MATCHES . ' AS m2 ON (m2.season = m.season AND m2.league = m.league + 50 AND m2.matchday = m.matchday AND m2.team_id_home = b.user_id + 2000)
LEFT JOIN ' . FOOTB_MATCHES . " AS m3 ON (m3.season = m.season AND m3.league = m.league + 50 AND m3.matchday = m.matchday AND m3.team_id_guest = b.user_id + 2000) LEFT JOIN ' . FOOTB_MATCHES . " AS m3 ON (m3.season = m.season AND m3.league = m.league + 50 AND m3.matchday = m.matchday AND m3.team_id_guest = b.user_id + 2000)
WHERE m.season = $season WHERE m.season = $season
AND m.league = $league AND m.league = $league
AND m.matchday = $matchday AND m.matchday = $matchday
AND (m3.match_no IS NOT NULL OR m2.match_no IS NOT NULL) AND (m3.match_no IS NOT NULL OR m2.match_no IS NOT NULL)
ORDER BY IFNULL(m2.match_no,m3.match_no) ASC, m3.match_no ASC, LOWER(u.username) ASC, m.match_datetime ASC, m.match_no ASC"; ORDER BY IFNULL(m2.match_no,m3.match_no) ASC, m3.match_no ASC, LOWER(u.username) ASC, m.match_datetime ASC, m.match_no ASC";
@@ -375,7 +375,7 @@ if ($count_matches > 0)
) )
); );
$total = 0; $total = 0;
} }
$bet_index++; $bet_index++;
$total += ($user_bet['points'] == '') ? 0 : $user_bet['points']; $total += ($user_bet['points'] == '') ? 0 : $user_bet['points'];
if ($user_bet['status'] < 3) if ($user_bet['status'] < 3)
@@ -393,7 +393,7 @@ if ($count_matches > 0)
$bet_home = $user_bet['bet_home']; $bet_home = $user_bet['bet_home'];
$bet_guest = $user_bet['bet_guest']; $bet_guest = $user_bet['bet_guest'];
} }
$colorstyle_bet = color_style($user_bet['status']); $colorstyle_bet = color_style($user_bet['status']);
$template->assign_block_vars('match_panel.user_row.bet', array( $template->assign_block_vars('match_panel.user_row.bet', array(
'BET' => $bet_home. ':'. $bet_guest, 'BET' => $bet_home. ':'. $bet_guest,
@@ -565,4 +565,3 @@ $template->assign_vars(array(
'TOTAL_USERS' => ($total_users == 1) ? $user->lang['VIEW_BET_USER'] : sprintf($user->lang['VIEW_BET_USERS'], $total_users), 'TOTAL_USERS' => ($total_users == 1) ? $user->lang['VIEW_BET_USER'] : sprintf($user->lang['VIEW_BET_USERS'], $total_users),
) )
); );
?>

View File

@@ -7,6 +7,11 @@
* *
*/ */
if (!defined('IN_PHPBB'))
{
exit;
}
// Check Prediction League authorisation // Check Prediction League authorisation
if ( !$this->auth->acl_get('u_use_football') ) if ( !$this->auth->acl_get('u_use_football') )
{ {
@@ -225,5 +230,3 @@ $template->assign_vars(array(
'POINTS' => $config['football_win_name'], 'POINTS' => $config['football_win_name'],
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -509,8 +509,8 @@ $template->assign_vars(array(
'S_SIDENAME' => $sidename, 'S_SIDENAME' => $sidename,
'BET_EXPLAIN' => $bet_explain, 'BET_EXPLAIN' => $bet_explain,
'JOIN_LEAGUE' => ($link_rules == '') ? '' : sprintf($user->lang['JOIN_LEAGUE'], $link_rules), 'JOIN_LEAGUE' => ($link_rules == '') ? '' : sprintf($user->lang['JOIN_LEAGUE'], $link_rules),
'S_FORM_ACTION_BET' => $this->helper->route('football_main_controller', array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'bet')), 'S_FORM_ACTION_BET' => $this->helper->route('football_football_controller', array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'bet')),
'S_FORM_ACTION_JOIN' => $this->helper->route('football_main_controller', array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'join')), 'S_FORM_ACTION_JOIN' => $this->helper->route('football_football_controller', array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'join')),
'S_USER_IS_MEMBER' => $user_is_member, 'S_USER_IS_MEMBER' => $user_is_member,
'S_DATA_BET' => $data_bet && $user_is_allowed_to_bet, 'S_DATA_BET' => $data_bet && $user_is_allowed_to_bet,
'S_DATA_GROUP' => $data_group, 'S_DATA_GROUP' => $data_group,
@@ -527,5 +527,3 @@ $template->assign_vars(array(
'S_DISPLAY_RATING' => $display_rating, 'S_DISPLAY_RATING' => $display_rating,
) )
); );
?>

View File

@@ -7,6 +7,11 @@
* *
*/ */
if (!defined('IN_PHPBB'))
{
exit;
}
// Can this user view Prediction Leagues pages? // Can this user view Prediction Leagues pages?
if (!$config['football_guest_view']) if (!$config['football_guest_view'])
{ {
@@ -389,4 +394,3 @@ $template->set_filenames(array(
); );
page_footer(); page_footer();
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -43,8 +43,8 @@ $sql = "SELECT
LEFT JOIN " . FOOTB_EXTRA . " AS e ON (e.season = m.season AND e.league = m.league AND e.matchday = m.matchday AND e.extra_status = 0) LEFT JOIN " . FOOTB_EXTRA . " AS e ON (e.season = m.season AND e.league = m.league AND e.matchday = m.matchday AND e.extra_status = 0)
LEFT JOIN " . FOOTB_EXTRA_BETS . " AS eb ON (eb.season = m.season AND eb.league = m.league AND eb.extra_no = e.extra_no AND eb.user_id = $user_id) LEFT JOIN " . FOOTB_EXTRA_BETS . " AS eb ON (eb.season = m.season AND eb.league = m.league AND eb.extra_no = e.extra_no AND eb.user_id = $user_id)
WHERE m.status <= 0 WHERE m.status <= 0
GROUP BY delivery, m.league GROUP BY m.season, m.league, m.matchday, l.league_name_short, matchday_name, delivery
ORDER BY delivery, m.league"; ORDER BY delivery, m.season, m.league";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
while($row = $db->sql_fetchrow($result) AND $index < 11) while($row = $db->sql_fetchrow($result) AND $index < 11)
@@ -55,7 +55,7 @@ while($row = $db->sql_fetchrow($result) AND $index < 11)
$template->assign_block_vars('delivery', array( $template->assign_block_vars('delivery', array(
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'U_BET_LINK' => $this->helper->route('football_main_controller', array('side' => 'bet', 's' => $row['season'], 'l' => $row['league'], 'm' => $row['matchday'])), 'U_BET_LINK' => $this->helper->route('football_football_controller', array('side' => 'bet', 's' => $row['season'], 'l' => $row['league'], 'm' => $row['matchday'])),
'LEAGUE_SHORT' => $row['league_name_short'], 'LEAGUE_SHORT' => $row['league_name_short'],
'MATCHDAY_NAME' => $row['matchday_name'], 'MATCHDAY_NAME' => $row['matchday_name'],
'COLOR' => ($row['bets_count'] == $row['matches_count'] && $row['extra_bets_count'] == $row['extra_count']) ? 'green' : 'red', 'COLOR' => ($row['bets_count'] == $row['matches_count'] && $row['extra_bets_count'] == $row['extra_count']) ? 'green' : 'red',
@@ -71,5 +71,3 @@ $template->assign_vars(array(
'S_DATA_DELIVERY' => $data_delivery, 'S_DATA_DELIVERY' => $data_delivery,
) )
); );
?>

View File

@@ -7,6 +7,11 @@
* *
*/ */
if (!defined('IN_PHPBB'))
{
exit;
}
$this->user->add_lang_ext('football/football', 'info_acp_bank'); $this->user->add_lang_ext('football/football', 'info_acp_bank');
// Check Prediction League authorisation // Check Prediction League authorisation
@@ -16,11 +21,11 @@ if ( !$this->auth->acl_get('u_use_football') )
} }
$action=''; $action='';
$phpbb_root_path = './../../'; $phpbb_root_path = './../../';
if (!$season OR !$league) if (!$season OR !$league)
{ {
redirect($this->helper->route('football_main_controller', array('side' => 'bank', 's' => $season, 'l' => $league))); redirect($this->helper->route('football_football_controller', array('side' => 'bank', 's' => $season, 'l' => $league)));
} }
else else
{ {
@@ -90,14 +95,10 @@ else
} }
$user_rows = $db->sql_fetchrowset($result); $user_rows = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
$export_file = $league_short . '_' . $season . '_bank.csv';
$newline = "\r\n"; $newline = "\r\n";
header('Pragma: no-cache'); $csv_data= '';
header("Content-Type: text/csv; name=\"$export_file\""); $csv_data .= $league_name . ' ' . sprintf($user->lang['SEASON']) . ' ' . $season. $newline;
header("Content-disposition: attachment; filename=$export_file"); $csv_data .= sprintf($user->lang['NAME']) . ';' . $config['football_win_name'] . ';' . sprintf($user->lang['BET_POINTS']) . ';' .
$export= '';
$export .= $league_name . ' ' . sprintf($user->lang['SEASON']) . ' ' . $season. $newline;
$export .= sprintf($user->lang['NAME']) . ';' . $config['football_win_name'] . ';' . sprintf($user->lang['BET_POINTS']) . ';' .
sprintf($user->lang['DEPOSITED']) . ';' . sprintf($user->lang['DEPOSIT']) . ';' . sprintf($user->lang['WINS']) . ';' . sprintf($user->lang['DEPOSITED']) . ';' . sprintf($user->lang['DEPOSIT']) . ';' . sprintf($user->lang['WINS']) . ';' .
sprintf($user->lang['PAID']) . ';' . sprintf($user->lang['PAYOUT']) . ';' . $newline; sprintf($user->lang['PAID']) . ';' . sprintf($user->lang['PAYOUT']) . ';' . $newline;
@@ -118,7 +119,7 @@ else
$no_cash_wins = ''; $no_cash_wins = '';
$no_cash_paid = ''; $no_cash_paid = '';
} }
$export .= str_replace("\"", "\"\"", $user_row['username']) . ';' . $csv_data .= str_replace("\"", "\"\"", $user_row['username']) . ';' .
str_replace('.', ',', $user_row['user_points']) . ';' . str_replace('.', ',', $user_row['user_points']) . ';' .
str_replace('.', ',', $user_row['bet_points']) . $no_cash_bet_points . ';' . str_replace('.', ',', $user_row['bet_points']) . $no_cash_bet_points . ';' .
str_replace('.', ',', $user_row['deposit']) . $no_cash_deposit . ';' . str_replace('.', ',', $user_row['deposit']) . $no_cash_deposit . ';' .
@@ -127,9 +128,24 @@ else
str_replace('.', ',', $user_row['paid']) . $no_cash_paid . ';' . str_replace('.', ',', $user_row['paid']) . $no_cash_paid . ';' .
str_replace('.', ',', $user_row['new_pay']) . ';' . $newline; str_replace('.', ',', $user_row['new_pay']) . ';' . $newline;
} }
echo utf8_decode($export);
exit; // Output the csv file
$filename = $league_short . '_' . $season . '_bank.csv';
$fp = fopen('php://output', 'w');
header('Content-Type: application/octet-stream');
header("Content-disposition: attachment; filename=\"" . basename($filename) . "\"");
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: private', false);
header('Pragma: public');
header('Content-Transfer-Encoding: binary');
fwrite($fp, "\xEF\xBB\xBF"); // UTF-8 BOM
fwrite($fp, utf8_decode($csv_data));
fclose($fp);
exit_handler();
} }
} }
} }
?>

View File

@@ -7,6 +7,11 @@
* *
*/ */
if (!defined('IN_PHPBB'))
{
exit;
}
$this->user->add_lang_ext('football/football', 'info_acp_bank'); $this->user->add_lang_ext('football/football', 'info_acp_bank');
// Check Prediction League authorisation // Check Prediction League authorisation
@@ -19,7 +24,7 @@ $action='';
if (!$season) if (!$season)
{ {
redirect($this->helper->route('football_main_controller', array('side' => 'bank', 's' => $season))); redirect($this->helper->route('football_football_controller', array('side' => 'bank', 's' => $season)));
} }
else else
{ {
@@ -50,14 +55,10 @@ else
} }
$user_rows = $db->sql_fetchrowset($result); $user_rows = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
$export_file = $season. '_bank.csv';
$newline = "\r\n"; $newline = "\r\n";
header('Pragma: no-cache'); $csv_data= '';
header("Content-Type: text/csv; name=\"$export_file\""); $csv_data .= sprintf($user->lang['SEASON']) . ' ' . $season. $newline;
header("Content-disposition: attachment; filename=$export_file"); $csv_data .= sprintf($user->lang['NAME']) . ';' . sprintf($user->lang['SEASON']) . ';' . sprintf($user->lang['LEAGUE']) . ';Saldo;' . $newline;
$export= '';
$export .= sprintf($user->lang['SEASON']) . ' ' . $season. $newline;
$export .= sprintf($user->lang['NAME']) . ';' . sprintf($user->lang['SEASON']) . ';' . sprintf($user->lang['LEAGUE']) . ';Saldo;' . $newline;
$last_username = ''; $last_username = '';
$sum_saldo = 0.0; $sum_saldo = 0.0;
@@ -65,11 +66,11 @@ else
{ {
if ($last_username != '' AND $last_username != $user_row['username']) if ($last_username != '' AND $last_username != $user_row['username'])
{ {
$export .= str_replace("\"", "\"\"", $last_username) . ';Summe;;' . $csv_data .= str_replace("\"", "\"\"", $last_username) . ';Summe;;' .
str_replace('.', ',', $sum_saldo) . ';' . $newline; str_replace('.', ',', $sum_saldo) . ';' . $newline;
$sum_saldo = 0.0; $sum_saldo = 0.0;
} }
$export .= str_replace("\"", "\"\"", $user_row['username']) . ';' . $csv_data .= str_replace("\"", "\"\"", $user_row['username']) . ';' .
$user_row['season'] . ';' . $user_row['season'] . ';' .
$user_row['league'] . ';' . $user_row['league'] . ';' .
str_replace('.', ',', $user_row['saldo']) . ';' . $newline; str_replace('.', ',', $user_row['saldo']) . ';' . $newline;
@@ -78,11 +79,25 @@ else
} }
if ($last_username != '') if ($last_username != '')
{ {
$export .= str_replace("\"", "\"\"", $last_username) . ';Summe;;' . $csv_data .= str_replace("\"", "\"\"", $last_username) . ';Summe;;' .
str_replace('.', ',', $sum_saldo) . ';' . $newline; str_replace('.', ',', $sum_saldo) . ';' . $newline;
} }
echo utf8_decode($export); // Output the csv file
exit; $filename = $season. '_bank.csv';
$fp = fopen('php://output', 'w');
header('Content-Type: application/octet-stream');
header("Content-disposition: attachment; filename=\"" . basename($filename) . "\"");
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: private', false);
header('Pragma: public');
header('Content-Transfer-Encoding: binary');
fwrite($fp, "\xEF\xBB\xBF"); // UTF-8 BOM
fwrite($fp, utf8_decode($csv_data));
fclose($fp);
exit_handler();
} }
} }
?>

View File

@@ -1,52 +1,55 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
// Check Prediction League authorisation if (!defined('IN_PHPBB'))
if ( !$this->auth->acl_get('u_use_football') ) {
{ exit;
trigger_error('NO_AUTH_VIEW'); }
}
// Check Prediction League authorisation
$action=''; if ( !$this->auth->acl_get('u_use_football') )
{
if (!$season OR !$league) trigger_error('NO_AUTH_VIEW');
{ }
redirect($this->helper->route('football_main_controller', array('side' => 'bet')));
} $action='';
else
{ if (!$season OR !$league)
if (user_is_member($user->data['user_id'], $season, $league)) {
{ redirect($this->helper->route('football_football_controller', array('side' => 'bet')));
$season_info = season_info($season); }
if (!sizeof($season_info)) else
{ {
$error_message = sprintf($user->lang['NO_SEASON']); if (user_is_member($user->data['user_id'], $season, $league))
trigger_error($error_message); {
} $season_info = season_info($season);
else if (!sizeof($season_info))
{ {
$league_info = league_info($season, $league); $error_message = sprintf($user->lang['NO_SEASON']);
if (!sizeof($league_info)) trigger_error($error_message);
{ }
$error_message = sprintf($user->lang['NO_LEAGUE']); else
trigger_error($error_message); {
} $league_info = league_info($season, $league);
else if (!sizeof($league_info))
{ {
include($this->football_includes_path . 'export.' . $this->php_ext); $error_message = sprintf($user->lang['NO_LEAGUE']);
} trigger_error($error_message);
} }
} else
else {
{ include($this->football_includes_path . 'export.' . $this->php_ext);
redirect($this->helper->route('football_main_controller', array('side' => 'bet'))); }
} }
} }
else
?> {
redirect($this->helper->route('football_football_controller', array('side' => 'bet')));
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,150 +1,148 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
$user_is_member = user_is_member($user->data['user_id'], $season, $league); $user_is_member = user_is_member($user->data['user_id'], $season, $league);
$edit_mode = false; $edit_mode = false;
$display_group = false; $display_group = false;
$display_ko = false; $display_ko = false;
$data_lastresults = false; $data_lastresults = false;
$curr_year = date("Y"); $curr_year = date("Y");
$matchnumber = 0; $matchnumber = 0;
$match_date = ""; $match_date = "";
$local_board_time = time() + ($config['football_time_shift'] * 3600); $local_board_time = time() + ($config['football_time_shift'] * 3600);
$sql = 'SELECT * FROM ' . FOOTB_MATCHDAYS . " WHERE status = 0 AND delivery_date < FROM_UNIXTIME('$local_board_time')"; $sql = 'SELECT * FROM ' . FOOTB_MATCHDAYS . " WHERE status = 0 AND delivery_date < FROM_UNIXTIME('$local_board_time')";
// Calculate matches AND results of matchday // Calculate matches AND results of matchday
$sql = "SELECT $sql = "SELECT
m.season, m.season,
m.league, m.league,
m.matchday, m.matchday,
m.status, m.status,
m.match_datetime, m.match_datetime,
LEFT(m.match_datetime, 10) AS match_date, LEFT(m.match_datetime, 10) AS match_date,
l.league_name, l.league_name,
t1.team_symbol AS home_symbol, t1.team_symbol AS home_symbol,
t2.team_symbol AS guest_symbol, t2.team_symbol AS guest_symbol,
t1.team_name AS home_name, t1.team_name AS home_name,
t2.team_name AS guest_name, t2.team_name AS guest_name,
t1.team_name_short AS home_short, t1.team_name_short AS home_short,
t2.team_name_short AS guest_short, t2.team_name_short AS guest_short,
m.goals_home, m.goals_home,
m.goals_guest, m.goals_guest,
m.ko_match AS ko_match, m.ko_match AS ko_match,
m.goals_overtime_home AS kogoals_home, m.goals_overtime_home AS kogoals_home,
m.goals_overtime_guest AS kogoals_guest, m.goals_overtime_guest AS kogoals_guest,
CONCAT( CONCAT(
CASE DATE_FORMAT(m.match_datetime,'%w') CASE DATE_FORMAT(m.match_datetime,'%w')
WHEN 0 THEN '" . $lang_dates['Sun'] . "' WHEN 0 THEN '" . $lang_dates['Sun'] . "'
WHEN 1 THEN '" . $lang_dates['Mon'] . "' WHEN 1 THEN '" . $lang_dates['Mon'] . "'
WHEN 2 THEN '" . $lang_dates['Tue'] . "' WHEN 2 THEN '" . $lang_dates['Tue'] . "'
WHEN 3 THEN '" . $lang_dates['Wed'] . "' WHEN 3 THEN '" . $lang_dates['Wed'] . "'
WHEN 4 THEN '" . $lang_dates['Thu'] . "' WHEN 4 THEN '" . $lang_dates['Thu'] . "'
WHEN 5 THEN '" . $lang_dates['Fri'] . "' WHEN 5 THEN '" . $lang_dates['Fri'] . "'
WHEN 6 THEN '" . $lang_dates['Sat'] . "' WHEN 6 THEN '" . $lang_dates['Sat'] . "'
ELSE 'Error' END, ELSE 'Error' END,
DATE_FORMAT(m.match_datetime,' %d.%m. %H:%i') DATE_FORMAT(m.match_datetime,' %d.%m. %H:%i')
) AS match_time ) AS match_time
FROM " . FOOTB_MATCHES . ' AS m FROM " . FOOTB_MATCHES . ' AS m
LEFT JOIN ' . FOOTB_LEAGUES . ' AS l ON (l.season = m.season AND l.league = m.league) LEFT JOIN ' . FOOTB_LEAGUES . ' AS l ON (l.season = m.season AND l.league = m.league)
LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home) LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home)
LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest) LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest)
WHERE m.match_datetime < FROM_UNIXTIME('$local_board_time') WHERE m.match_datetime < FROM_UNIXTIME('$local_board_time')
ORDER BY m.match_datetime DESC, m.league ASC ORDER BY m.match_datetime DESC, m.league ASC
LIMIT 100"; LIMIT 100";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$ext_path = $this->phpbb_path_helper->update_web_root_path($this->phpbb_extension_manager->get_extension_path('football/football', true)); $ext_path = $this->phpbb_path_helper->update_web_root_path($this->phpbb_extension_manager->get_extension_path('football/football', true));
while($row = $db->sql_fetchrow($result)) while($row = $db->sql_fetchrow($result))
{ {
$data_lastresults = true; $data_lastresults = true;
$matchnumber++ ; $matchnumber++ ;
$row_class = (!($matchnumber % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; $row_class = (!($matchnumber % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
if ($match_date <> $row['match_date']) if ($match_date <> $row['match_date'])
{ {
$match_date = ($match_date == "") ? $row['match_date'] : $match_date; $match_date = ($match_date == "") ? $row['match_date'] : $match_date;
if ($matchnumber > $config['football_display_last_results'] ) if ($matchnumber > $config['football_display_last_results'] )
{ {
break; break;
} }
} }
$homelogo = $row['home_symbol']; $homelogo = $row['home_symbol'];
$homename = $row['home_name']; $homename = $row['home_name'];
$homeshort = $row['home_short']; $homeshort = $row['home_short'];
$guestlogo = $row['guest_symbol']; $guestlogo = $row['guest_symbol'];
$guestname = $row['guest_name']; $guestname = $row['guest_name'];
$guestshort = $row['guest_short']; $guestshort = $row['guest_short'];
if ($homelogo <> '') if ($homelogo <> '')
{ {
$logoH = "<img src=\"" . $ext_path . 'images/flags/' . $homelogo . "\" alt=\"" . $homelogo . "\" width=\"20\" height=\"20\"/>" ; $logoH = "<img src=\"" . $ext_path . 'images/flags/' . $homelogo . "\" alt=\"" . $homelogo . "\" width=\"20\" height=\"20\"/>" ;
} }
else else
{ {
$logoH = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"20\" height=\"20\"/>" ; $logoH = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"20\" height=\"20\"/>" ;
} }
if ($guestlogo <> '') if ($guestlogo <> '')
{ {
$logoG = "<img src=\"" . $ext_path . 'images/flags/' . $guestlogo . "\" alt=\"" . $guestlogo . "\" width=\"20\" height=\"20\"/>" ; $logoG = "<img src=\"" . $ext_path . 'images/flags/' . $guestlogo . "\" alt=\"" . $guestlogo . "\" width=\"20\" height=\"20\"/>" ;
} }
else else
{ {
$logoG = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"20\" height=\"20\"/>" ; $logoG = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"20\" height=\"20\"/>" ;
} }
$goals_home = ($row['goals_home'] == '') ? '- ' : $row['goals_home']; $goals_home = ($row['goals_home'] == '') ? '- ' : $row['goals_home'];
$goals_guest = ($row['goals_guest'] == '') ? ' -' : $row['goals_guest']; $goals_guest = ($row['goals_guest'] == '') ? ' -' : $row['goals_guest'];
$kogoals_home = ($row['kogoals_home'] == '') ? '- ' : $row['kogoals_home']; $kogoals_home = ($row['kogoals_home'] == '') ? '- ' : $row['kogoals_home'];
$kogoals_guest = ($row['kogoals_guest'] == '') ? ' -' : $row['kogoals_guest']; $kogoals_guest = ($row['kogoals_guest'] == '') ? ' -' : $row['kogoals_guest'];
$colorstyle = color_style($row['status']); $colorstyle = color_style($row['status']);
$template->assign_block_vars('last_results', array( $template->assign_block_vars('last_results', array(
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'U_RESULTS_LINK'=> $this->helper->route('football_main_controller', array('side' => 'results', 's' => $row['season'], 'l' => $row['league'], 'm' => $row['matchday'])), 'U_RESULTS_LINK'=> $this->helper->route('football_football_controller', array('side' => 'results', 's' => $row['season'], 'l' => $row['league'], 'm' => $row['matchday'])),
'MATCH_DATE' => $row['match_date'], 'MATCH_DATE' => $row['match_date'],
'MATCH_TIME' => $row['match_time'], 'MATCH_TIME' => $row['match_time'],
'LEAGUE_NAME' => $row['league_name'], 'LEAGUE_NAME' => $row['league_name'],
'LOGO_HOME' => $logoH, 'LOGO_HOME' => $logoH,
'LOGO_GUEST' => $logoG, 'LOGO_GUEST' => $logoG,
'HOME_NAME' => $homename, 'HOME_NAME' => $homename,
'GUEST_NAME' => $guestname, 'GUEST_NAME' => $guestname,
'HOME_SHORT' => $homeshort, 'HOME_SHORT' => $homeshort,
'GUEST_SHORT' => $guestshort, 'GUEST_SHORT' => $guestshort,
'GOALS_HOME' => $goals_home, 'GOALS_HOME' => $goals_home,
'GOALS_GUEST' => $goals_guest, 'GOALS_GUEST' => $goals_guest,
'COLOR_STYLE' => color_style($row['status']), 'COLOR_STYLE' => color_style($row['status']),
'KOGOALS_HOME' => $kogoals_home, 'KOGOALS_HOME' => $kogoals_home,
'KOGOALS_GUEST' => $kogoals_guest, 'KOGOALS_GUEST' => $kogoals_guest,
'COLOR_STYLE' => $colorstyle, 'COLOR_STYLE' => $colorstyle,
) )
); );
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
$sidename = sprintf($user->lang['LAST_RESULTS']); $sidename = sprintf($user->lang['LAST_RESULTS']);
$template->assign_vars(array( $template->assign_vars(array(
'S_DISPLAY_LAST_RESULTS' => true, 'S_DISPLAY_LAST_RESULTS' => true,
'S_SIDENAME' => $sidename, 'S_SIDENAME' => $sidename,
'S_DATA_LAST_RESULTS' => $data_lastresults, 'S_DATA_LAST_RESULTS' => $data_lastresults,
'S_USER_IS_MEMBER' => $user_is_member, 'S_USER_IS_MEMBER' => $user_is_member,
) )
); );
?>

View File

@@ -62,5 +62,3 @@ $template->assign_vars(array(
'S_DISPLAY_LAST_USERS' => $display_last_users, 'S_DISPLAY_LAST_USERS' => $display_last_users,
'S_LAST_USERS' => true, 'S_LAST_USERS' => true,
)); ));
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -320,5 +320,3 @@ $template->assign_vars(array(
'USERNAME' => $username, 'USERNAME' => $username,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -331,4 +331,3 @@ $template->assign_vars(array(
'USERNAME4' => $username4, 'USERNAME4' => $username4,
) )
); );
?>

View File

@@ -1,386 +1,384 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
$start = $this->request->variable('start', 0); $start = $this->request->variable('start', 0);
$matches_on_matchday = false; $matches_on_matchday = false;
if (!$user_sel) if (!$user_sel)
{ {
if (user_is_member($user->data['user_id'], $season, $league)) if (user_is_member($user->data['user_id'], $season, $league))
{ {
$user_sel = $user->data['user_id']; $user_sel = $user->data['user_id'];
} }
} }
$username = ''; $username = '';
$data = false; $data = false;
// Select user // Select user
$total_users = 0; $total_users = 0;
$sql = 'SELECT DISTINCT $sql = 'SELECT DISTINCT
u.user_id, u.user_id,
u.username u.username
FROM ' . FOOTB_BETS . ' AS b FROM ' . FOOTB_BETS . ' AS b
LEFT JOIN ' . USERS_TABLE . " AS u ON (u.user_id = b.user_id) LEFT JOIN ' . USERS_TABLE . " AS u ON (u.user_id = b.user_id)
WHERE season = $season WHERE season = $season
AND league = $league AND league = $league
ORDER BY LOWER(u.username) ASC"; ORDER BY LOWER(u.username) ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
while($row = $db->sql_fetchrow($result)) while($row = $db->sql_fetchrow($result))
{ {
$total_users++; $total_users++;
if ($user_sel == $row['user_id'] OR !$user_sel) if ($user_sel == $row['user_id'] OR !$user_sel)
{ {
$selectid = ' selected="selected"'; $selectid = ' selected="selected"';
$username = $row['username']; $username = $row['username'];
$user_sel = $row['user_id']; $user_sel = $row['user_id'];
} }
else else
{ {
$selectid = ''; $selectid = '';
} }
$template->assign_block_vars('form_user', array( $template->assign_block_vars('form_user', array(
'S_USER' => $row['user_id'], 'S_USER' => $row['user_id'],
'S_USERNAME' => $row['username'], 'S_USERNAME' => $row['username'],
'S_SELECTEDID' => $selectid, 'S_SELECTEDID' => $selectid,
) )
); );
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
// Select matches with results and tendencies // Select matches with results and tendencies
$sql = "SELECT $sql = "SELECT
m.match_no, m.match_no,
m.status, m.status,
m.formula_home, m.formula_home,
m.formula_guest, m.formula_guest,
t1.team_name_short AS home_name, t1.team_name_short AS home_name,
t2.team_name_short AS guest_name, t2.team_name_short AS guest_name,
t1.team_id AS home_id, t1.team_id AS home_id,
t2.team_id AS guest_id, t2.team_id AS guest_id,
m.goals_home, m.goals_home,
m.goals_guest, m.goals_guest,
SUM(IF(b.goals_home + 0 > b.goals_guest AND b.goals_home <> '' AND b.goals_guest <> '', 1, 0)) AS home, SUM(IF(b.goals_home + 0 > b.goals_guest AND b.goals_home <> '' AND b.goals_guest <> '', 1, 0)) AS home,
SUM(IF(b.goals_home = b.goals_guest AND b.goals_home <> '' AND b.goals_guest <> '', 1, 0)) AS draw, SUM(IF(b.goals_home = b.goals_guest AND b.goals_home <> '' AND b.goals_guest <> '', 1, 0)) AS draw,
SUM(IF(b.goals_home + 0 < b.goals_guest AND b.goals_home <> '' AND b.goals_guest <> '', 1, 0)) AS guest SUM(IF(b.goals_home + 0 < b.goals_guest AND b.goals_home <> '' AND b.goals_guest <> '', 1, 0)) AS guest
FROM " . FOOTB_MATCHES . ' AS m FROM " . FOOTB_MATCHES . ' AS m
LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season=m.season AND t1.league = m.league AND t1.team_id = m.team_id_home) LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season=m.season AND t1.league = m.league AND t1.team_id = m.team_id_home)
LEFT JOIN ' . FOOTB_TEAMS . ' AS t2 ON (t2.season=m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest) LEFT JOIN ' . FOOTB_TEAMS . ' AS t2 ON (t2.season=m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest)
LEFT JOIN ' . FOOTB_BETS . " AS b ON(b.season = m.season AND b.league = m.league AND b.match_no = m.match_no) LEFT JOIN ' . FOOTB_BETS . " AS b ON(b.season = m.season AND b.league = m.league AND b.match_no = m.match_no)
WHERE m.season = $season WHERE m.season = $season
AND m.league = $league AND m.league = $league
AND m.matchday = $matchday AND m.matchday = $matchday
GROUP BY m.match_no GROUP BY m.match_no
ORDER BY m.match_datetime ASC, m.match_no ASC"; ORDER BY m.match_datetime ASC, m.match_no ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$matches = $db->sql_fetchrowset($result); $matches = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
$count_matches = sizeof($matches); $count_matches = sizeof($matches);
if ($count_matches > 11) if ($count_matches > 11)
{ {
$split_after = 8; $split_after = 8;
$splits = floor($count_matches / 8); $splits = floor($count_matches / 8);
} }
else else
{ {
$split_after = $count_matches; $split_after = $count_matches;
$splits = 1; $splits = 1;
} }
// Make sure $start is set to the last page if it exceeds the amount // Make sure $start is set to the last page if it exceeds the amount
if ($start < 0 || $start >= $total_users) if ($start < 0 || $start >= $total_users)
{ {
$start = ($start < 0) ? 0 : floor(($total_users - 1) / $config['football_users_per_page']) * $config['football_users_per_page']; $start = ($start < 0) ? 0 : floor(($total_users - 1) / $config['football_users_per_page']) * $config['football_users_per_page'];
} }
else else
{ {
$start = floor($start / $config['football_users_per_page']) * $config['football_users_per_page']; $start = floor($start / $config['football_users_per_page']) * $config['football_users_per_page'];
} }
$sql_start = $start * $count_matches; $sql_start = $start * $count_matches;
$sql_limit = $config['football_users_per_page'] * $count_matches; $sql_limit = $config['football_users_per_page'] * $count_matches;
// handle pagination. // handle pagination.
$base_url = $this->helper->route('football_main_controller', array('side' => 'my_koeff', 's' => $season, 'l' => $league, 'm' => $matchday, 'u' => "$user_sel")); $base_url = $this->helper->route('football_football_controller', array('side' => 'my_koeff', 's' => $season, 'l' => $league, 'm' => $matchday, 'u' => "$user_sel"));
$pagination = $phpbb_container->get('pagination'); $pagination = $phpbb_container->get('pagination');
$pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start); $pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start);
$bet_line = array(); $bet_line = array();
if ($count_matches > 0) if ($count_matches > 0)
{ {
$matches_on_matchday = true; $matches_on_matchday = true;
// Select user bets and points on user results // Select user bets and points on user results
$sql = "SELECT $sql = "SELECT
u.user_id, u.user_id,
u.username, u.username,
m.status, m.status,
b.goals_home AS bet_home, b.goals_home AS bet_home,
b.goals_guest AS bet_guest, b.goals_guest AS bet_guest,
" . select_points("bu") . " " . select_points("bu") . "
FROM " . FOOTB_MATCHES . ' AS m FROM " . FOOTB_MATCHES . ' AS m
LEFT JOIN ' . FOOTB_BETS . ' AS b ON(b.season = m.season AND b.league = m.league AND b.match_no = m.match_no) LEFT JOIN ' . FOOTB_BETS . ' AS b ON(b.season = m.season AND b.league = m.league AND b.match_no = m.match_no)
LEFT JOIN ' . FOOTB_BETS . " AS bu ON(bu.season = m.season AND bu.league = m.league AND bu.match_no = m.match_no AND bu.user_id = $user_sel) LEFT JOIN ' . FOOTB_BETS . " AS bu ON(bu.season = m.season AND bu.league = m.league AND bu.match_no = m.match_no AND bu.user_id = $user_sel)
LEFT JOIN " . USERS_TABLE . " AS u ON (u.user_id = b.user_id) LEFT JOIN " . USERS_TABLE . " AS u ON (u.user_id = b.user_id)
WHERE m.season = $season WHERE m.season = $season
AND m.league = $league AND m.league = $league
AND m.matchday = $matchday AND m.matchday = $matchday
ORDER BY LOWER(u.username) ASC, m.match_datetime ASC, m.match_no ASC"; ORDER BY LOWER(u.username) ASC, m.match_datetime ASC, m.match_no ASC";
$result = $db->sql_query_limit($sql, $sql_limit, $sql_start); $result = $db->sql_query_limit($sql, $sql_limit, $sql_start);
$user_bets = $db->sql_fetchrowset($result); $user_bets = $db->sql_fetchrowset($result);
$db->sql_freeresult($result); $db->sql_freeresult($result);
$bet_index = 0; $bet_index = 0;
$split_index = 0; $split_index = 0;
foreach ($user_bets AS $user_bet) foreach ($user_bets AS $user_bet)
{ {
$data = true; $data = true;
if ($bet_index == $count_matches) if ($bet_index == $count_matches)
{ {
$bet_index = 0; $bet_index = 0;
$split_index = 0; $split_index = 0;
} }
if (!($bet_index % $split_after)) if (!($bet_index % $split_after))
{ {
$split_index++; $split_index++;
} }
$sum_total[$user_bet['username']] = 0; $sum_total[$user_bet['username']] = 0;
$bet_line[$split_index][] = $user_bet; $bet_line[$split_index][] = $user_bet;
$bet_index++; $bet_index++;
} }
} }
$match_index = 0; $match_index = 0;
$split_index = 0; $split_index = 0;
$matchday_sum_total = 0; $matchday_sum_total = 0;
$colorstyle_total = ' color_finally'; $colorstyle_total = ' color_finally';
foreach ($matches AS $match) foreach ($matches AS $match)
{ {
if (!($match_index % $split_after)) if (!($match_index % $split_after))
{ {
if ($match_index > 0) if ($match_index > 0)
{ {
$total = 0; $total = 0;
$count_user = 0; $count_user = 0;
$bet_index = 0; $bet_index = 0;
foreach ($bet_line[$split_index] AS $user_bet) foreach ($bet_line[$split_index] AS $user_bet)
{ {
if ($bet_index == 0) if ($bet_index == 0)
{ {
$count_user++; $count_user++;
$row_class = (!($count_user % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; $row_class = (!($count_user % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
if ($user_bet['user_id'] == $user->data['user_id']) if ($user_bet['user_id'] == $user->data['user_id'])
{ {
$row_class = 'bg3 row_user'; $row_class = 'bg3 row_user';
} }
$template->assign_block_vars('match_panel.user_row', array( $template->assign_block_vars('match_panel.user_row', array(
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'USER_NAME' => $user_bet['username'], 'USER_NAME' => $user_bet['username'],
) )
); );
$total = 0; $total = 0;
} }
$bet_index++; $bet_index++;
$total += ($user_bet['points'] == '') ? 0 : $user_bet['points']; $total += ($user_bet['points'] == '') ? 0 : $user_bet['points'];
if ($user_bet['status'] < 1 && !$config['football_view_bets']) if ($user_bet['status'] < 1 && !$config['football_view_bets'])
{ {
// hide bets // hide bets
$bet_home = ($user_bet['bet_home'] == '') ? '&nbsp;' : '?'; $bet_home = ($user_bet['bet_home'] == '') ? '&nbsp;' : '?';
$bet_guest = ($user_bet['bet_guest'] == '') ? '&nbsp;' : '?'; $bet_guest = ($user_bet['bet_guest'] == '') ? '&nbsp;' : '?';
} }
else else
{ {
$bet_home = $user_bet['bet_home']; $bet_home = $user_bet['bet_home'];
$bet_guest = $user_bet['bet_guest']; $bet_guest = $user_bet['bet_guest'];
} }
$colorstyle_bet = color_style($user_bet['status']); $colorstyle_bet = color_style($user_bet['status']);
$template->assign_block_vars('match_panel.user_row.bet', array( $template->assign_block_vars('match_panel.user_row.bet', array(
'BET' => $bet_home. ':'. $bet_guest, 'BET' => $bet_home. ':'. $bet_guest,
'COLOR_STYLE' => $colorstyle_bet, 'COLOR_STYLE' => $colorstyle_bet,
'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'], 'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'],
) )
); );
if ($bet_index == $split_after) if ($bet_index == $split_after)
{ {
$sum_total[$user_bet['username']] += $total; $sum_total[$user_bet['username']] += $total;
$matchday_sum_total += $total; $matchday_sum_total += $total;
$bet_index = 0; $bet_index = 0;
} }
} }
$template->assign_block_vars('match_panel.tendency_footer', array( $template->assign_block_vars('match_panel.tendency_footer', array(
'S_TOTAL' => false, 'S_TOTAL' => false,
) )
); );
foreach ($matches_tendency AS $match_tendency) foreach ($matches_tendency AS $match_tendency)
{ {
$template->assign_block_vars('match_panel.tendency_footer.tendency', array( $template->assign_block_vars('match_panel.tendency_footer.tendency', array(
'TENDENCY' => $match_tendency, 'TENDENCY' => $match_tendency,
) )
); );
} }
} }
$matches_tendency = array(); $matches_tendency = array();
$split_index++; $split_index++;
if ($split_index == $splits) if ($split_index == $splits)
{ {
$display_total = true; $display_total = true;
} }
else else
{ {
$display_total = false; $display_total = false;
} }
$template->assign_block_vars('match_panel', array( $template->assign_block_vars('match_panel', array(
'S_TOTAL' => $display_total, 'S_TOTAL' => $display_total,
) )
); );
} }
if (0 == $match['home_id']) if (0 == $match['home_id'])
{ {
$home_info = get_team($season, $league, $match['match_no'], 'team_id_home', $match['formula_home']); $home_info = get_team($season, $league, $match['match_no'], 'team_id_home', $match['formula_home']);
$home_in_array = explode("#",$home_info); $home_in_array = explode("#",$home_info);
$homename = $home_in_array[3]; $homename = $home_in_array[3];
} }
else else
{ {
$homename = $match['home_name']; $homename = $match['home_name'];
} }
if (0 == $match['guest_id']) if (0 == $match['guest_id'])
{ {
$guest_info = get_team($season, $league, $match['match_no'], 'team_id_guest', $match['formula_guest']); $guest_info = get_team($season, $league, $match['match_no'], 'team_id_guest', $match['formula_guest']);
$guest_in_array = explode("#",$guest_info); $guest_in_array = explode("#",$guest_info);
$guestname = $guest_in_array[3]; $guestname = $guest_in_array[3];
} }
else else
{ {
$guestname = $match['guest_name']; $guestname = $match['guest_name'];
} }
$colorstyle_match = color_style($match['status']); $colorstyle_match = color_style($match['status']);
$template->assign_block_vars('match_panel.match_entry', array( $template->assign_block_vars('match_panel.match_entry', array(
'HOME_NAME' => $homename, 'HOME_NAME' => $homename,
'GUEST_NAME' => $guestname, 'GUEST_NAME' => $guestname,
'RESULT' => $match['goals_home'] . ':' . $match['goals_guest'], 'RESULT' => $match['goals_home'] . ':' . $match['goals_guest'],
'COLOR_STYLE' => $colorstyle_match, 'COLOR_STYLE' => $colorstyle_match,
) )
); );
if ($match['status'] < 1 && !$config['football_view_tendencies']) if ($match['status'] < 1 && !$config['football_view_tendencies'])
{ {
// hide tendencies // hide tendencies
$matches_tendency[] = '?-?-?'; $matches_tendency[] = '?-?-?';
} }
else else
{ {
$matches_tendency[] = $match['home'] . '-' . $match['draw'] . '-' . $match['guest']; $matches_tendency[] = $match['home'] . '-' . $match['draw'] . '-' . $match['guest'];
} }
$match_index++; $match_index++;
} }
if ($count_matches > 0) if ($count_matches > 0)
{ {
$total = 0; $total = 0;
$count_user = 0; $count_user = 0;
$bet_index = 0; $bet_index = 0;
foreach ($bet_line[$split_index] AS $user_bet) foreach ($bet_line[$split_index] AS $user_bet)
{ {
if ($bet_index == 0) if ($bet_index == 0)
{ {
$count_user++; $count_user++;
$row_class = (!($count_user % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; $row_class = (!($count_user % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
if ($user_bet['user_id'] == $user->data['user_id']) if ($user_bet['user_id'] == $user->data['user_id'])
{ {
$row_class = 'bg3 row_user'; $row_class = 'bg3 row_user';
} }
$template->assign_block_vars('match_panel.user_row', array( $template->assign_block_vars('match_panel.user_row', array(
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'USER_NAME' => $user_bet['username'], 'USER_NAME' => $user_bet['username'],
) )
); );
$total = 0; $total = 0;
} }
$bet_index++; $bet_index++;
$total += ($user_bet['points'] == '') ? 0 : $user_bet['points']; $total += ($user_bet['points'] == '') ? 0 : $user_bet['points'];
if ($user_bet['status'] < 1) if ($user_bet['status'] < 1)
{ {
if ($user_bet['bet_home'] == '') if ($user_bet['bet_home'] == '')
{ {
$bet_home = ''; $bet_home = '';
} }
else else
{ {
$bet_home = '?'; $bet_home = '?';
} }
if ($user_bet['bet_guest'] == '') if ($user_bet['bet_guest'] == '')
{ {
$bet_guest = ''; $bet_guest = '';
} }
else else
{ {
$bet_guest = '?'; $bet_guest = '?';
} }
} }
else else
{ {
$bet_home = $user_bet['bet_home']; $bet_home = $user_bet['bet_home'];
$bet_guest = $user_bet['bet_guest']; $bet_guest = $user_bet['bet_guest'];
} }
$colorstyle_bet = color_style($user_bet['status']); $colorstyle_bet = color_style($user_bet['status']);
$template->assign_block_vars('match_panel.user_row.bet', array( $template->assign_block_vars('match_panel.user_row.bet', array(
'BET' => $bet_home. ':'. $bet_guest, 'BET' => $bet_home. ':'. $bet_guest,
'COLOR_STYLE' => $colorstyle_bet, 'COLOR_STYLE' => $colorstyle_bet,
'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'], 'POINTS' => ($user_bet['points'] == '') ? '&nbsp;' : $user_bet['points'],
) )
); );
if ($bet_index == $split_after) if ($bet_index == $split_after)
{ {
$sum_total[$user_bet['username']] += $total; $sum_total[$user_bet['username']] += $total;
$matchday_sum_total += $total; $matchday_sum_total += $total;
$template->assign_block_vars('match_panel.user_row.points', array( $template->assign_block_vars('match_panel.user_row.points', array(
'COLOR_STYLE' => $colorstyle_total, 'COLOR_STYLE' => $colorstyle_total,
'POINTS_TOTAL' => $sum_total[$user_bet['username']], 'POINTS_TOTAL' => $sum_total[$user_bet['username']],
) )
); );
$bet_index = 0; $bet_index = 0;
} }
} }
$template->assign_block_vars('match_panel.tendency_footer', array( $template->assign_block_vars('match_panel.tendency_footer', array(
'S_TOTAL' => true, 'S_TOTAL' => true,
'COLOR_STYLE' => $colorstyle_total, //currently ignored 'COLOR_STYLE' => $colorstyle_total, //currently ignored
'SUMTOTAL' => $matchday_sum_total, 'SUMTOTAL' => $matchday_sum_total,
) )
); );
foreach ($matches_tendency AS $match_tendency) foreach ($matches_tendency AS $match_tendency)
{ {
$template->assign_block_vars('match_panel.tendency_footer.tendency', array( $template->assign_block_vars('match_panel.tendency_footer.tendency', array(
'TENDENCY' => $match_tendency, 'TENDENCY' => $match_tendency,
) )
); );
} }
} }
$sidename = sprintf($user->lang['MY_KOEFF']); $sidename = sprintf($user->lang['MY_KOEFF']);
$template->assign_vars(array( $template->assign_vars(array(
'S_DISPLAY_MY_KOEFF' => true, 'S_DISPLAY_MY_KOEFF' => true,
'S_SIDENAME' => $sidename, 'S_SIDENAME' => $sidename,
'S_MATCHES_ON_MATCHDAY' => $matches_on_matchday, 'S_MATCHES_ON_MATCHDAY' => $matches_on_matchday,
'S_SPALTEN' => ($count_matches * 2) + 2, 'S_SPALTEN' => ($count_matches * 2) + 2,
'PAGE_NUMBER' => $pagination->on_page($total_users, $this->config['football_users_per_page'], $start), 'PAGE_NUMBER' => $pagination->on_page($total_users, $this->config['football_users_per_page'], $start),
'TOTAL_USERS' => ($total_users == 1) ? $user->lang['VIEW_BET_USER'] : sprintf($user->lang['VIEW_BET_USERS'], $total_users), 'TOTAL_USERS' => ($total_users == 1) ? $user->lang['VIEW_BET_USER'] : sprintf($user->lang['VIEW_BET_USERS'], $total_users),
'USERNAME' => $username, 'USERNAME' => $username,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -195,4 +195,3 @@ $template->assign_vars(array(
'USERNAME' => $username, 'USERNAME' => $username,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -169,5 +169,3 @@ $template->assign_vars(array(
'USERNAME' => $username, 'USERNAME' => $username,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -426,5 +426,3 @@ $template->assign_vars(array(
'USERNAME' => $username, 'USERNAME' => $username,
) )
); );
?>

View File

@@ -7,12 +7,14 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
$data_odds = false; $data_odds = false;
$userid = $user->data['user_id'];
$user_is_member = user_is_member($userid, $season, $league);
$matchnumber = 0; $matchnumber = 0;
$lang_dates = $user->lang['datetime']; $lang_dates = $user->lang['datetime'];
@@ -37,6 +39,8 @@ $sql = "SELECT
t2.team_name_short AS guest_name, t2.team_name_short AS guest_name,
t1.team_id AS home_id, t1.team_id AS home_id,
t2.team_id AS guest_id, t2.team_id AS guest_id,
b.goals_home AS bet_home,
b.goals_guest AS bet_guest,
m.goals_home, m.goals_home,
m.goals_guest, m.goals_guest,
m.goals_overtime_home AS kogoals_home, m.goals_overtime_home AS kogoals_home,
@@ -48,13 +52,15 @@ $sql = "SELECT
m.odd_1, m.odd_1,
m.odd_x, m.odd_x,
m.odd_2, m.odd_2,
m.trend FROM " . FOOTB_MATCHES . ' AS m m.trend
LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home) FROM " . FOOTB_MATCHES . ' AS m
LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest) LEFT JOIN ' . FOOTB_BETS . " AS b ON (b.season = m.season AND b.league = m.league AND b.match_no = m.match_no AND b.user_id = $userid)
WHERE m.season = $season LEFT JOIN " . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home)
AND m.league = $league LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest)
AND m.matchday = $matchday WHERE m.season = $season
ORDER BY m.match_datetime ASC, m.match_no ASC"; AND m.league = $league
AND m.matchday = $matchday
ORDER BY m.match_datetime ASC, m.match_no ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows = $db->sql_fetchrowset($result); $rows = $db->sql_fetchrowset($result);
@@ -137,6 +143,8 @@ foreach ($rows as $row)
$goals_guest = ($row['goals_guest'] == '') ? '&nbsp;' : $row['goals_guest']; $goals_guest = ($row['goals_guest'] == '') ? '&nbsp;' : $row['goals_guest'];
$kogoals_home = ($row['kogoals_home'] == '') ? '&nbsp;' : $row['kogoals_home']; $kogoals_home = ($row['kogoals_home'] == '') ? '&nbsp;' : $row['kogoals_home'];
$kogoals_guest = ($row['kogoals_guest'] == '') ? '&nbsp;' : $row['kogoals_guest']; $kogoals_guest = ($row['kogoals_guest'] == '') ? '&nbsp;' : $row['kogoals_guest'];
$bet_home = ($row['bet_home'] == '') ? '&nbsp;' : $row['bet_home'];
$bet_guest = ($row['bet_guest'] == '') ? '&nbsp;' : $row['bet_guest'];
$template->assign_block_vars('odds', array( $template->assign_block_vars('odds', array(
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
@@ -154,12 +162,15 @@ foreach ($rows as $row)
'tid' => $homeid, 'mode' => 'all')), 'tid' => $homeid, 'mode' => 'all')),
'U_PLAN_GUEST' => $this->helper->route('football_football_popup', array('popside' => 'viewplan_popup', 's' => $season, 'l' => $league, 'U_PLAN_GUEST' => $this->helper->route('football_football_popup', array('popside' => 'viewplan_popup', 's' => $season, 'l' => $league,
'tid' => $guestid, 'mode' => 'all')), 'tid' => $guestid, 'mode' => 'all')),
'BET_HOME' => $bet_home,
'BET_GUEST' => $bet_guest,
'GOALS_HOME' => $goals_home, 'GOALS_HOME' => $goals_home,
'GOALS_GUEST' => $goals_guest, 'GOALS_GUEST' => $goals_guest,
'COLOR_STYLE' => '', 'COLOR_STYLE' => '',
'KOGOALS_HOME' => $kogoals_home, 'KOGOALS_HOME' => $kogoals_home,
'KOGOALS_GUEST' => $kogoals_guest, 'KOGOALS_GUEST' => $kogoals_guest,
'S_KO_MATCH' => $ko_match, 'S_KO_MATCH' => $ko_match,
'S_USER_IS_MEMBER' => $user_is_member,
'TREND' => $row['trend'], 'TREND' => $row['trend'],
'U_MATCH_STATS' => $this->helper->route('football_football_popup', array('popside' => 'hist_popup', 's' => $season, 'l' => $league, 'U_MATCH_STATS' => $this->helper->route('football_football_popup', array('popside' => 'hist_popup', 's' => $season, 'l' => $league,
'hid' => $homeid, 'gid' => $guestid, 'm' => $matchday, 'hid' => $homeid, 'gid' => $guestid, 'm' => $matchday,
@@ -201,5 +212,3 @@ $template->assign_vars(array(
'S_DATA_ODDS' => $data_odds, 'S_DATA_ODDS' => $data_odds,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -35,10 +35,10 @@ if ($league <> 0)
FROM " . FOOTB_RANKS . ' AS r FROM " . FOOTB_RANKS . ' AS r
LEFT Join ' . USERS_TABLE . " AS u ON (r.user_id = u.user_id) LEFT Join ' . USERS_TABLE . " AS u ON (r.user_id = u.user_id)
WHERE r.season = $season WHERE r.season = $season
AND r.league = $league_corr AND r.league = $league_corr
AND r.matchday = $matchday AND r.matchday = $matchday
AND r.status IN (2,3) AND r.status IN (2,3)
ORDER BY rank ASC, LOWER(u.username) ASC"; ORDER BY r.rank ASC, LOWER(u.username) ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
while($row = $db->sql_fetchrow($result)) while($row = $db->sql_fetchrow($result))
@@ -78,4 +78,3 @@ if ($league <> 0)
'WIN_NAME' => $config['football_win_name'], 'WIN_NAME' => $config['football_win_name'],
)); ));
} }
?>

View File

@@ -1,94 +1,93 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if ($league <> 0) if ($league <> 0)
{ {
$sql = 'SELECT $sql = 'SELECT
r.matchday AS last_matchday r.matchday AS last_matchday
FROM '. FOOTB_RANKS . " AS r FROM '. FOOTB_RANKS . " AS r
WHERE r.season = $season WHERE r.season = $season
AND r.league = $league AND r.league = $league
AND r.status IN (2,3) AND r.status IN (2,3)
ORDER BY r.matchday DESC"; ORDER BY r.matchday DESC";
$result = $db->sql_query_limit($sql, 1); $result = $db->sql_query_limit($sql, 1);
if($row = $db->sql_fetchrow($result)) if($row = $db->sql_fetchrow($result))
{ {
$last_matchday = $row['last_matchday']; $last_matchday = $row['last_matchday'];
$db->sql_freeresult($result); $db->sql_freeresult($result);
$rank_matchday = ($last_matchday < $matchday) ? $last_matchday : $matchday; $rank_matchday = ($last_matchday < $matchday) ? $last_matchday : $matchday;
$sql = 'SELECT $sql = 'SELECT
r.rank_total AS rank, r.rank_total AS rank,
r.user_id, r.user_id,
u.username, u.username,
u.user_colour, u.user_colour,
r.status AS status, r.status AS status,
r.points_total AS points, r.points_total AS points,
r.win_total AS win r.win_total AS win
FROM '. FOOTB_RANKS . ' AS r FROM '. FOOTB_RANKS . ' AS r
LEFT JOIN '. USERS_TABLE . " AS u ON (r.user_id = u.user_id) LEFT JOIN '. USERS_TABLE . " AS u ON (r.user_id = u.user_id)
WHERE r.season = $season WHERE r.season = $season
AND r.league = $league AND r.league = $league
AND r.matchday = $rank_matchday AND r.matchday = $rank_matchday
AND r.status IN (2,3) AND r.status IN (2,3)
ORDER BY points DESC, LOWER(u.username) ASC"; ORDER BY points DESC, LOWER(u.username) ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$index = 0; $index = 0;
while($row = $db->sql_fetchrow($result)) while($row = $db->sql_fetchrow($result))
{ {
$index++; $index++;
$data_rank_total = true; $data_rank_total = true;
if (($index <= $config['football_display_ranks']) OR ($row['user_id'] == $user->data['user_id'])) if (($index <= $config['football_display_ranks']) OR ($row['user_id'] == $user->data['user_id']))
{ {
$row_class = (!($index % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; $row_class = (!($index % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
if ($row['user_id'] == $user->data['user_id']) if ($row['user_id'] == $user->data['user_id'])
{ {
$row_class = 'bg3 row_user'; $row_class = 'bg3 row_user';
} }
$colorstyle = color_style($row['status']); $colorstyle = color_style($row['status']);
$template->assign_block_vars("ranktotal", array( $template->assign_block_vars("ranktotal", array(
'RANK' => $row['rank'], 'RANK' => $row['rank'],
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'USERID' => $row['user_id'], 'USERID' => $row['user_id'],
'USERNAME' => $row['username'], 'USERNAME' => $row['username'],
'U_PROFILE' => get_username_string('profile', $row['user_id'], $row['username'], $row['user_colour']), 'U_PROFILE' => get_username_string('profile', $row['user_id'], $row['username'], $row['user_colour']),
'URL' => $phpbb_root_path . "profile.php?mode=viewprofile&u=" . $row['user_id'], 'URL' => $phpbb_root_path . "profile.php?mode=viewprofile&u=" . $row['user_id'],
'POINTS' => $row['points'], 'POINTS' => $row['points'],
'COLOR_STYLE' => $colorstyle, 'COLOR_STYLE' => $colorstyle,
'WIN' => $row['win'] , 'WIN' => $row['win'] ,
) )
); );
} }
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
} }
else else
{ {
$data_rank_total = false; $data_rank_total = false;
} }
$league_info = league_info($season, $league); $league_info = league_info($season, $league);
$template->assign_vars(array( $template->assign_vars(array(
'S_DISPLAY_RANK_TOTAL' => true, 'S_DISPLAY_RANK_TOTAL' => true,
'S_DATA_RANK_TOTAL' => $data_rank_total, 'S_DATA_RANK_TOTAL' => $data_rank_total,
'S_WIN' => ($league_info['win_matchday'] == '0' and $league_info['win_season'] == '0') ? false : true, 'S_WIN' => ($league_info['win_matchday'] == '0' and $league_info['win_season'] == '0') ? false : true,
'WIN_NAME' => $config['football_win_name'], 'WIN_NAME' => $config['football_win_name'],
) )
); );
} }
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -53,7 +53,7 @@ $sql = "SELECT
AND b.league = $league AND b.league = $league
AND m.status IN (2,3) AND m.status IN (2,3)
AND m.matchday = $matchday AND m.matchday = $matchday
GROUP BY user_id"; GROUP BY b.user_id";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$usersstats = $db->sql_fetchrowset($result); $usersstats = $db->sql_fetchrowset($result);
@@ -126,7 +126,7 @@ else
$sql_limit = $config['football_users_per_page']; $sql_limit = $config['football_users_per_page'];
// handle pagination. // handle pagination.
$base_url = $this->helper->route('football_main_controller', array('side' => 'ranks_matchday', 's' => $season, 'l' => $league, 'm' => $matchday)); $base_url = $this->helper->route('football_football_controller', array('side' => 'ranks_matchday', 's' => $season, 'l' => $league, 'm' => $matchday));
$pagination = $phpbb_container->get('pagination'); $pagination = $phpbb_container->get('pagination');
$pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start); $pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start);
$data_ranks = false; $data_ranks = false;
@@ -224,8 +224,8 @@ while($row = $db->sql_fetchrow($result))
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'RANK' => $rankof[$row['user_id']], 'RANK' => $rankof[$row['user_id']],
'NO_CHANGES' => ($change_sign == '=') ? true : false, 'NO_CHANGES' => ($change_sign == '=') ? true : false,
'WORSENED' => ($change_sign == '-') ? true : false, 'WORSENED' => ($change_sign == '+') ? true : false,
'IMPROVED' => ($change_sign == '+') ? true : false, 'IMPROVED' => ($change_sign == '-') ? true : false,
'CHANGE_SIGN' => $change_sign, 'CHANGE_SIGN' => $change_sign,
'CHANGE_DIFFER' => $change_differ, 'CHANGE_DIFFER' => $change_differ,
'USERID' => $row['user_id'], 'USERID' => $row['user_id'],
@@ -257,5 +257,3 @@ $template->assign_vars(array(
'WIN_NAME' => $config['football_win_name'], 'WIN_NAME' => $config['football_win_name'],
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -39,7 +39,7 @@ switch ($mode)
WHERE b.league = $league WHERE b.league = $league
AND ((b.season < $season) OR (b.season = $season AND m.matchday <= $matchday)) AND ((b.season < $season) OR (b.season = $season AND m.matchday <= $matchday))
AND m.status IN (2,3) AND m.status IN (2,3)
GROUP BY user_id"; GROUP BY b.user_id";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows = $db->sql_fetchrowset($result); $rows = $db->sql_fetchrowset($result);
@@ -61,7 +61,7 @@ switch ($mode)
WHERE r.league = $league WHERE r.league = $league
AND ((r.season < $season AND r.matchday = l.matchdays) OR (r.season = $season AND r.matchday = $matchday)) AND ((r.season < $season AND r.matchday = l.matchdays) OR (r.season = $season AND r.matchday = $matchday))
AND r.status IN (2,3) AND r.status IN (2,3)
GROUP BY user_id GROUP BY r.user_id
ORDER BY r.user_id ASC"; ORDER BY r.user_id ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -89,7 +89,7 @@ switch ($mode)
WHERE r.league = $league WHERE r.league = $league
AND ((r.season < $season) OR (r.season = $season AND r.matchday <= $matchday)) AND ((r.season < $season) OR (r.season = $season AND r.matchday <= $matchday))
AND r.status IN (2,3) AND r.status IN (2,3)
GROUP BY user_id GROUP BY r.user_id
ORDER BY points_total DESC, LOWER(u.username) ASC"; ORDER BY points_total DESC, LOWER(u.username) ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -114,7 +114,7 @@ switch ($mode)
$index_end = $index_start + $config['football_users_per_page'] - 1; $index_end = $index_start + $config['football_users_per_page'] - 1;
// handle pagination. // handle pagination.
$base_url = $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'alltime')); $base_url = $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'alltime'));
$pagination = $phpbb_container->get('pagination'); $pagination = $phpbb_container->get('pagination');
$pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start); $pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start);
@@ -171,9 +171,9 @@ switch ($mode)
'WIN_NAME' => $config['football_win_name'], 'WIN_NAME' => $config['football_win_name'],
'S_SHOW_OTHER_LINKS' => true, 'S_SHOW_OTHER_LINKS' => true,
'S_HEADER' => sprintf($user->lang['RANKING_ALL_TIME']), 'S_HEADER' => sprintf($user->lang['RANKING_ALL_TIME']),
'S_LINK_RANKING' => $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)), 'S_LINK_RANKING' => $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_LINK_ALL_TIME' => '', 'S_LINK_ALL_TIME' => '',
'S_LINK_COMPARE' => $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'compare')), 'S_LINK_COMPARE' => $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'compare')),
) )
); );
break; break;
@@ -227,8 +227,8 @@ switch ($mode)
AND r.league = $league AND r.league = $league
AND r.matchday = $matchday AND r.matchday = $matchday
AND r.status IN (2,3) AND r.status IN (2,3)
GROUP BY season, user_id GROUP BY r.season, r.user_id
ORDER BY r.user_id ASC, season ASC"; ORDER BY r.user_id ASC, r.season ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -275,7 +275,7 @@ switch ($mode)
$index_end = $index_start + $config['football_users_per_page'] - 1; $index_end = $index_start + $config['football_users_per_page'] - 1;
// handle pagination. // handle pagination.
$base_url = $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'compare')); $base_url = $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'compare'));
$pagination = $phpbb_container->get('pagination'); $pagination = $phpbb_container->get('pagination');
$pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start); $pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_users, $this->config['football_users_per_page'], $start);
@@ -334,8 +334,8 @@ switch ($mode)
'WIN_NAME' => $config['football_win_name'], 'WIN_NAME' => $config['football_win_name'],
'S_SHOW_OTHER_LINKS' => true, 'S_SHOW_OTHER_LINKS' => true,
'S_HEADER' => sprintf($user->lang['RANKING_COMPARE']), 'S_HEADER' => sprintf($user->lang['RANKING_COMPARE']),
'S_LINK_RANKING' => $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)), 'S_LINK_RANKING' => $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_LINK_ALL_TIME' => $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'alltime')), 'S_LINK_ALL_TIME' => $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'alltime')),
'S_LINK_COMPARE' => '', 'S_LINK_COMPARE' => '',
) )
); );
@@ -369,7 +369,7 @@ switch ($mode)
AND b.league = $league AND b.league = $league
AND m.status IN (2,3) AND m.status IN (2,3)
AND m.matchday <= $matchday AND m.matchday <= $matchday
GROUP BY user_id"; GROUP BY b.user_id";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$rows = $db->sql_fetchrowset($result); $rows = $db->sql_fetchrowset($result);
@@ -423,7 +423,7 @@ switch ($mode)
AND r.league = $league AND r.league = $league
AND r.matchday = $matchday AND r.matchday = $matchday
AND r.status IN (2,3) AND r.status IN (2,3)
GROUP BY user_id GROUP BY r.user_id
ORDER BY r.points_total DESC, LOWER(u.username) ASC"; ORDER BY r.points_total DESC, LOWER(u.username) ASC";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -447,7 +447,7 @@ switch ($mode)
$index_end = $index_start + $config['football_users_per_page'] - 1; $index_end = $index_start + $config['football_users_per_page'] - 1;
// handle pagination. // handle pagination.
$base_url = $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)); $base_url = $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday));
$pagination = $phpbb_container->get('pagination'); $pagination = $phpbb_container->get('pagination');
if ($user->data['football_mobile']) if ($user->data['football_mobile'])
{ {
@@ -482,13 +482,13 @@ switch ($mode)
{ {
if ($rank > $prev_rank_of[$curr_rank['user_id']]) if ($rank > $prev_rank_of[$curr_rank['user_id']])
{ {
$change_sign = '-'; $change_sign = '+';
$differ = $prev_rank_of[$curr_rank['user_id']] - $rank; $differ = $rank - $prev_rank_of[$curr_rank['user_id']];
$change_differ = ' (' . $differ . ')'; $change_differ = ' (' . $differ . ')';
} }
else else
{ {
$change_sign = '+'; $change_sign = '-';
$differ = $prev_rank_of[$curr_rank['user_id']] - $rank; $differ = $prev_rank_of[$curr_rank['user_id']] - $rank;
$change_differ = ' (' . $differ . ')'; $change_differ = ' (' . $differ . ')';
} }
@@ -520,8 +520,8 @@ switch ($mode)
'ROW_CLASS' => $row_class, 'ROW_CLASS' => $row_class,
'RANK' => $rank, 'RANK' => $rank,
'NO_CHANGES' => ($change_sign == '=') ? true : false, 'NO_CHANGES' => ($change_sign == '=') ? true : false,
'WORSENED' => ($change_sign == '-') ? true : false, 'WORSENED' => ($change_sign == '+') ? true : false,
'IMPROVED' => ($change_sign == '+') ? true : false, 'IMPROVED' => ($change_sign == '-') ? true : false,
'CHANGE_SIGN' => $change_sign, 'CHANGE_SIGN' => $change_sign,
'CHANGE_DIFFER' => $change_differ, 'CHANGE_DIFFER' => $change_differ,
'USERID' => $curr_rank['user_id'], 'USERID' => $curr_rank['user_id'],
@@ -554,8 +554,8 @@ switch ($mode)
'WIN_NAME' => $config['football_win_name'], 'WIN_NAME' => $config['football_win_name'],
'S_SHOW_OTHER_LINKS' => true, 'S_SHOW_OTHER_LINKS' => true,
'S_LINK_RANKING' => '', 'S_LINK_RANKING' => '',
'S_LINK_ALL_TIME' => $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'alltime')), 'S_LINK_ALL_TIME' => $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'alltime')),
'S_LINK_COMPARE' => $this->helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'compare')), 'S_LINK_COMPARE' => $this->helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday, 'mode' => 'compare')),
) )
); );
break; break;

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -408,15 +408,16 @@ switch ($league_info['bet_ko_type'])
$label_finalresult = sprintf($user->lang['EXTRATIME_SHORT']) . '/' . sprintf($user->lang['PENALTY_SHORT']); $label_finalresult = sprintf($user->lang['EXTRATIME_SHORT']) . '/' . sprintf($user->lang['PENALTY_SHORT']);
break; break;
} }
// set correct display for usage in menu template // set correct display for usage in menu template
if($side == 'results') if($side == 'results')
{ {
$display_results = true; $display_results = true;
$display_results_tl = false;
$sidename = sprintf($user->lang['RESULTS']); $sidename = sprintf($user->lang['RESULTS']);
} }
if($side == 'results_tl') if($side == 'results_tl')
{ {
$display_results = false;
$display_results_tl = true; $display_results_tl = true;
$sidename = sprintf($user->lang['RESULTS']); $sidename = sprintf($user->lang['RESULTS']);
} }
@@ -428,7 +429,7 @@ $template->assign_vars(array(
'S_SIDENAME' => $sidename, 'S_SIDENAME' => $sidename,
'RESULT_EXPLAIN' => $result_explain, 'RESULT_EXPLAIN' => $result_explain,
'LABEL_FINALRESULT' => $label_finalresult, 'LABEL_FINALRESULT' => $label_finalresult,
'S_FORM_ACTION_RESULT' => $this->helper->route('football_main_controller', array('side' => 'results', 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'result')), 'S_FORM_ACTION_RESULT' => $this->helper->route('football_football_controller', array('side' => 'results', 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'result')),
'S_DATA_RESULTS' => $data_results, 'S_DATA_RESULTS' => $data_results,
'S_USER_IS_MEMBER' => $user_is_member, 'S_USER_IS_MEMBER' => $user_is_member,
'S_DISPLAY_GROUP' => $display_group, 'S_DISPLAY_GROUP' => $display_group,
@@ -436,5 +437,3 @@ $template->assign_vars(array(
'S_EDIT_MODE' => $edit_mode, 'S_EDIT_MODE' => $edit_mode,
) )
); );
?>

View File

@@ -1,227 +1,233 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
// Can this user view Prediction Leagues pages? if (!defined('IN_PHPBB'))
if (!$config['football_guest_view']) {
{ exit;
if ($user->data['user_id'] == ANONYMOUS) }
{
trigger_error('NO_GUEST_VIEW'); // Can this user view Prediction Leagues pages?
} if (!$config['football_guest_view'])
} {
if (!$config['football_user_view']) if ($user->data['user_id'] == ANONYMOUS)
{ {
// Only Prediction League member should see this page trigger_error('NO_GUEST_VIEW');
// Check Prediction League authorisation }
if ( !$this->auth->acl_get('u_use_football') ) }
{ if (!$config['football_user_view'])
trigger_error('NO_AUTH_VIEW'); {
} // Only Prediction League member should see this page
} // Check Prediction League authorisation
if ( !$this->auth->acl_get('u_use_football') )
// Football disabled? {
if ($config['football_disable']) trigger_error('NO_AUTH_VIEW');
{ }
$message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED'; }
trigger_error($message);
} // Football disabled?
if ($config['football_disable'])
$season = $this->request->variable('s', 0); {
$league = $this->request->variable('l', 0); $message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED';
trigger_error($message);
// Check parms }
$error_message = '';
if (!$season OR !$league) $season = $this->request->variable('s', 0);
{ $league = $this->request->variable('l', 0);
$data_rules = false;
if (!$season) // Check parms
{ $error_message = '';
$error_message .= sprintf($user->lang['NO_SEASON']) . '<br />'; if (!$season OR !$league)
} {
if (!$league) $data_rules = false;
{ if (!$season)
$error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />'; {
} $error_message .= sprintf($user->lang['NO_SEASON']) . '<br />';
} }
else if (!$league)
{ {
$season_info = season_info($season); $error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />';
if (sizeof($season_info)) }
{ }
$season_name = $season_info['season_name']; else
$league_info = league_info($season, $league); {
if (sizeof($league_info)) $season_info = season_info($season);
{ if (sizeof($season_info))
$data_rules = true; {
$matchdays = $league_info['matchdays']; $season_name = $season_info['season_name'];
$league_name = $league_info['league_name']; $league_info = league_info($season, $league);
if (sizeof($league_info))
if ($user->data['is_registered'] and !$user->data['is_bot']) {
{ $data_rules = true;
$win_hits = ''; $matchdays = $league_info['matchdays'];
$win_hits02 = ''; $league_name = $league_info['league_name'];
$win_matchday = explode(';', "0;" . $league_info['win_matchday']);
$win_season = explode(';',"0;" . $league_info['win_season']); if ($user->data['is_registered'] and !$user->data['is_bot'])
$win_hits = $league_info['win_result']; {
$win_hits02 = $league_info['win_result_02']; $win_hits = '';
$win_hits02 = '';
if($win_hits != '' AND $win_hits != 0) $win_matchday = explode(';', "0;" . $league_info['win_matchday']);
{ $win_season = explode(';',"0;" . $league_info['win_season']);
$template->assign_block_vars('wintable', array( $win_hits = $league_info['win_result'];
'WIN_DESC' => sprintf($user->lang['WIN_HITS']), $win_hits02 = $league_info['win_result_02'];
)
); if($win_hits != '' AND $win_hits != 0)
$template->assign_block_vars('wintable.entry', array( {
'ROW_CLASS' => 'bg1 row_light', $template->assign_block_vars('wintable', array(
'RANK' => '1. ' . sprintf($user->lang['PLACE']), 'WIN_DESC' => sprintf($user->lang['WIN_HITS']),
'WIN' => $win_hits, )
) );
); $template->assign_block_vars('wintable.entry', array(
} 'ROW_CLASS' => 'bg1 row_light',
'RANK' => '1. ' . sprintf($user->lang['PLACE']),
if($win_hits02 != '' AND $win_hits02 != 0 AND $config['football_win_hits02']) 'WIN' => $win_hits,
{ )
$template->assign_block_vars('wintable', array( );
'WIN_DESC' => sprintf($user->lang['WIN_HITS02']), }
)
); if($win_hits02 != '' AND $win_hits02 != 0 AND $config['football_win_hits02'])
$template->assign_block_vars('wintable.entry', array( {
'ROW_CLASS' => 'bg1 row_light', $template->assign_block_vars('wintable', array(
'RANK' => '1. ' . sprintf($user->lang['PLACE']), 'WIN_DESC' => sprintf($user->lang['WIN_HITS02']),
'WIN' => $win_hits02, )
) );
); $template->assign_block_vars('wintable.entry', array(
} 'ROW_CLASS' => 'bg1 row_light',
'RANK' => '1. ' . sprintf($user->lang['PLACE']),
'WIN' => $win_hits02,
if($win_matchday[1] != '' AND $win_matchday[1] != 0) )
{ );
$template->assign_block_vars('wintable', array( }
'WIN_DESC' => sprintf($user->lang['WINS_MATCHDAY']),
)
); if($win_matchday[1] != '' AND $win_matchday[1] != 0)
$rank = 1; {
while ($win_matchday[$rank] != '') $template->assign_block_vars('wintable', array(
{ 'WIN_DESC' => sprintf($user->lang['WINS_MATCHDAY']),
$row_class = (!($rank % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; )
$template->assign_block_vars('wintable.entry', array( );
'ROW_CLASS' => $row_class, $rank = 1;
'RANK' => $rank . '. ' . sprintf($user->lang['PLACE']), while ($win_matchday[$rank] != '')
'WIN' => $win_matchday[$rank], {
) $row_class = (!($rank % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
); $template->assign_block_vars('wintable.entry', array(
$rank++ ; 'ROW_CLASS' => $row_class,
if ($rank > sizeof($win_matchday)-1) 'RANK' => $rank . '. ' . sprintf($user->lang['PLACE']),
{ 'WIN' => $win_matchday[$rank],
break; )
} );
} $rank++ ;
} if ($rank > sizeof($win_matchday)-1)
{
if($win_season[1] != '' AND $win_season[1] != 0) break;
{ }
$template->assign_block_vars('wintable', array( }
'WIN_DESC' => sprintf($user->lang['WINS_SEASON']), }
)
); if($win_season[1] != '' AND $win_season[1] != 0)
$rank = 1; {
while ($win_season[$rank] != '') $template->assign_block_vars('wintable', array(
{ 'WIN_DESC' => sprintf($user->lang['WINS_SEASON']),
$row_class = (!($rank % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; )
$template->assign_block_vars('wintable.entry', array( );
'ROW_CLASS' => $row_class, $rank = 1;
'RANK' => $rank. '. ' . sprintf($user->lang['PLACE']), while ($win_season[$rank] != '')
'WIN' => $win_season[$rank], {
) $row_class = (!($rank % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
); $template->assign_block_vars('wintable.entry', array(
$rank++ ; 'ROW_CLASS' => $row_class,
if ($rank > sizeof($win_season)-1) 'RANK' => $rank. '. ' . sprintf($user->lang['PLACE']),
{ 'WIN' => $win_season[$rank],
break; )
} );
} $rank++ ;
} if ($rank > sizeof($win_season)-1)
} {
} break;
else }
{ }
$data_rules = false; }
$error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />'; }
$league_name = ''; }
} else
} {
else $data_rules = false;
{ $error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />';
$data_rules = false; $league_name = '';
$error_message .= sprintf($user->lang['NO_SEASON']) . '<br />'; }
$season_name = ''; }
} else
} {
$data_rules = false;
$sidename = sprintf($user->lang['FOOTBALL_RULES']); $error_message .= sprintf($user->lang['NO_SEASON']) . '<br />';
if ($data_rules) $season_name = '';
{ }
$link_rules = append_sid($phpbb_root_path . "viewtopic.$phpEx?p=" . $league_info["rules_post_id"]); }
$points_tendency = ($league_info['points_mode'] < 3) ? sprintf($user->lang['POINTS_TENDENCY' . $league_info['points_mode']], $league_info['points_tendency']) : sprintf($user->lang['POINTS_TENDENCY'], $league_info['points_tendency']);
$template->assign_vars(array( $sidename = sprintf($user->lang['FOOTBALL_RULES']);
'S_SIDENAME' => $sidename, if ($data_rules)
'S_DATA_RULES' => $data_rules, {
'S_BET_IN_TIME' => $league_info['bet_in_time'], $link_rules = append_sid($phpbb_root_path . "viewtopic.$phpEx?p=" . $league_info["rules_post_id"]);
'S_RULES_POST_ID' => $league_info['rules_post_id'], $points_tendency = ($league_info['points_mode'] < 3) ? sprintf($user->lang['POINTS_TENDENCY' . $league_info['points_mode']], $league_info['points_tendency']) : sprintf($user->lang['POINTS_TENDENCY'], $league_info['points_tendency']);
'S_ERROR_MESSAGE' => $error_message, $template->assign_vars(array(
'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'), 'S_SIDENAME' => $sidename,
'WIN_NAME' => $config['football_win_name'], 'S_DATA_RULES' => $data_rules,
'JOIN_MODE' => ($league_info['join_by_user']) ? (($league_info['join_in_season']) ? sprintf($user->lang['JOIN_IN_SEASON']) : sprintf($user->lang['JOIN_BY_USER'])) : sprintf($user->lang['JOIN_BY_ADMIN']), 'S_BET_IN_TIME' => $league_info['bet_in_time'],
'POINTS_HIT' => sprintf($user->lang['POINTS_HIT'], $league_info['points_result']) . '<br/>', 'S_BET_POINTS' => true,
'POINTS_TENDENCY' => $points_tendency . '<br/>', 'S_RULES_POST_ID' => $league_info['rules_post_id'],
'POINTS_DIFF' => ($league_info['points_mode'] == 4) ? sprintf($user->lang['POINTS_DIFFERENCE'], $league_info['points_diff']) . '<br/>' : 'S_ERROR_MESSAGE' => $error_message,
(($league_info['points_mode'] == 5) ? sprintf($user->lang['POINTS_DIFFERENCE_DRAW'], $league_info['points_diff']) . '<br/>' : ''), 'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'),
'POINTS_LAST' => ($league_info['points_last']) ? sprintf($user->lang['POINTS_NO_BET']) . '<br/>' : '', 'WIN_NAME' => $config['football_win_name'],
'LINK_RULES' => sprintf($user->lang['LINK_RULES'], $link_rules), 'JOIN_MODE' => ($league_info['join_by_user']) ? (($league_info['join_in_season']) ? sprintf($user->lang['JOIN_IN_SEASON']) : sprintf($user->lang['JOIN_BY_USER'])) : sprintf($user->lang['JOIN_BY_ADMIN']),
'SEASONNAME' => $season_info['season_name'], 'POINTS_HIT' => sprintf($user->lang['POINTS_HIT'], $league_info['points_result']) . '<br/>',
'LEAGUENAME' => $league_name, 'POINTS_TENDENCY' => $points_tendency . '<br/>',
) 'POINTS_DIFF' => ($league_info['points_mode'] == 4) ? sprintf($user->lang['POINTS_DIFFERENCE'], $league_info['points_diff']) . '<br/>' :
); (($league_info['points_mode'] == 5) ? sprintf($user->lang['POINTS_DIFFERENCE_DRAW'], $league_info['points_diff']) . '<br/>' : ''),
'POINTS_LAST' => ($league_info['points_last']) ? sprintf($user->lang['POINTS_NO_BET']) . '<br/>' : '',
// output page 'LINK_RULES' => sprintf($user->lang['LINK_RULES'], $link_rules),
page_header(sprintf($user->lang['FOOTBALL_RULES' ]) . ' ' . $league_info['league_name'] . ' ' . $season_info['season_name']); 'SEASONNAME' => $season_info['season_name'],
} 'LEAGUENAME' => $league_name,
else 'BET_POINTS' => $league_info['bet_points'],
{ )
$template->assign_vars(array( );
'S_SIDENAME' => $sidename,
'S_DATA_RULES' => $data_rules, // output page
'S_BET_IN_TIME' => false, page_header(sprintf($user->lang['FOOTBALL_RULES' ]) . ' ' . $league_info['league_name'] . ' ' . $season_info['season_name']);
'S_RULES_POST_ID' => 0, }
'S_ERROR_MESSAGE' => $error_message, else
'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'), {
'WIN_NAME' => $config['football_win_name'], $template->assign_vars(array(
'JOIN_MODE' => '', 'S_SIDENAME' => $sidename,
'POINTS_HIT' => '', 'S_DATA_RULES' => $data_rules,
'POINTS_TENDENCY' => '', 'S_BET_IN_TIME' => false,
'POINTS_DIFF' => '', 'S_BET_POINTS' => false,
'POINTS_LAST' => '', 'S_RULES_POST_ID' => 0,
'LINK_RULES' => '', 'S_ERROR_MESSAGE' => $error_message,
'SEASONNAME' => '', 'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'),
'LEAGUENAME' => '', 'WIN_NAME' => $config['football_win_name'],
) 'JOIN_MODE' => '',
); 'POINTS_HIT' => '',
'POINTS_TENDENCY' => '',
// output page 'POINTS_DIFF' => '',
page_header(sprintf($user->lang['FOOTBALL_RULES' ])); 'POINTS_LAST' => '',
} 'LINK_RULES' => '',
$template->set_filenames(array( 'SEASONNAME' => '',
'body' => 'rules_popup.html' 'LEAGUENAME' => '',
) )
); );
// $template->display('popup');
// output page
page_footer(); page_header(sprintf($user->lang['FOOTBALL_RULES' ]));
}
?> $template->set_filenames(array(
'body' => 'rules_popup.html'
)
);
// $template->display('popup');
page_footer();

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -142,4 +142,3 @@ else
) )
); );
} }
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -160,5 +160,3 @@ $template->assign_vars(array(
'LEAGUE' => $league, 'LEAGUE' => $league,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -136,5 +136,3 @@ $template->assign_vars(array(
'LEAGUE' => $league, 'LEAGUE' => $league,
) )
); );
?>

View File

@@ -7,7 +7,7 @@
* *
*/ */
if (!defined('IN_PHPBB') OR !defined('IN_FOOTBALL')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
@@ -159,7 +159,7 @@ foreach($points_ary as $group_id => $points)
) )
); );
} }
} }
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -458,9 +458,13 @@ if($league > 50)
{ {
// Activate bonus coloumn only for tippers. // Activate bonus coloumn only for tippers.
$data_bns = true; $data_bns = true;
} else {
$data_bns = false;
} }
if($side == 'table') { if($side == 'table') {
$display_table_menu = true; $display_table_menu = true;
} else {
$display_table_menu = false;
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
$sidename = sprintf($user->lang['TABLE']); $sidename = sprintf($user->lang['TABLE']);
@@ -476,5 +480,3 @@ $template->assign_vars(array(
'S_DATA_BNS' => $data_bns, 'S_DATA_BNS' => $data_bns,
) )
); );
?>

View File

@@ -1,23 +1,21 @@
<?php <?php
/** /**
* *
* @package Football * @package Football
* @version $Id: under_construction.php 1 2010-05-17 22:09:43Z football $ * @version $Id: under_construction.php 1 2010-05-17 22:09:43Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
if ( !defined('IN_PHPBB') OR !defined('IN_FOOTBALL') ) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
$sidename = sprintf($user->lang['UNDER_CONSTRUCTION']); $sidename = sprintf($user->lang['UNDER_CONSTRUCTION']);
$template->assign_vars(array( $template->assign_vars(array(
'S_SIDENAME' => $sidename, 'S_SIDENAME' => $sidename,
'S_DISPLAY_UNDER_CONSTRUCTION' => true, 'S_DISPLAY_UNDER_CONSTRUCTION' => true,
) )
); );
?>

View File

@@ -1,297 +1,300 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
// Can this user view Prediction Leagues pages? if (!defined('IN_PHPBB'))
if (!$config['football_guest_view']) {
{ exit;
if ($user->data['user_id'] == ANONYMOUS) }
{
trigger_error('NO_GUEST_VIEW'); // Can this user view Prediction Leagues pages?
} if (!$config['football_guest_view'])
} {
if (!$config['football_user_view']) if ($user->data['user_id'] == ANONYMOUS)
{ {
// Only Prediction League member should see this page trigger_error('NO_GUEST_VIEW');
// Check Prediction League authorisation }
if ( !$this->auth->acl_get('u_use_football') ) }
{ if (!$config['football_user_view'])
trigger_error('NO_AUTH_VIEW'); {
} // Only Prediction League member should see this page
} // Check Prediction League authorisation
if ( !$this->auth->acl_get('u_use_football') )
// Football disabled? {
if ($config['football_disable']) trigger_error('NO_AUTH_VIEW');
{ }
$message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED'; }
trigger_error($message);
} // Football disabled?
if ($config['football_disable'])
$mode = $this->request->variable('mode', ''); {
$season = $this->request->variable('s', 0); $message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED';
$league = $this->request->variable('l', 0); trigger_error($message);
$team_id = $this->request->variable('tid', 0); }
switch($mode) $mode = $this->request->variable('mode', '');
{ $season = $this->request->variable('s', 0);
case 'played': $league = $this->request->variable('l', 0);
$mode_desc = sprintf($user->lang['PLAYED_MATCHES']); $team_id = $this->request->variable('tid', 0);
$where = ' AND m.status IN (3,6) ';
$data_results = true; switch($mode)
break; {
case 'rest': case 'played':
$mode_desc = sprintf($user->lang['REST_MATCHES']); $mode_desc = sprintf($user->lang['PLAYED_MATCHES']);
$where = ' AND m.status IN (0,1,2,4,5) '; $where = ' AND m.status IN (3,6) ';
$data_results = false; $data_results = true;
break; break;
case 'home': case 'rest':
$mode_desc = sprintf($user->lang['HOME_MATCHES']); $mode_desc = sprintf($user->lang['REST_MATCHES']);
$where = " AND m.team_id_home = $team_id AND m.status IN (3,6) "; $where = ' AND m.status IN (0,1,2,4,5) ';
$data_results = true; $data_results = false;
break; break;
case 'away': case 'home':
$mode_desc = sprintf($user->lang['AWAY_MATCHES']); $mode_desc = sprintf($user->lang['HOME_MATCHES']);
$where = " AND m.team_id_guest = $team_id AND m.status IN (3,6) "; $where = " AND m.team_id_home = $team_id AND m.status IN (3,6) ";
$data_results = true; $data_results = true;
break; break;
// ALL is Default case 'away':
default: $mode_desc = sprintf($user->lang['AWAY_MATCHES']);
$mode_desc = sprintf($user->lang['ALL_MATCHES']); $where = " AND m.team_id_guest = $team_id AND m.status IN (3,6) ";
$where = ''; $data_results = true;
$data_results = true; break;
break; // ALL is Default
} default:
$mode_desc = sprintf($user->lang['ALL_MATCHES']);
// Check parms $where = '';
$error_message = ''; $data_results = true;
if (!$season OR !$league OR !$team_id) break;
{ }
$data_plan = false;
if (!$season) // Check parms
{ $error_message = '';
$error_message .= sprintf($user->lang['NO_SEASON']) . '<br />'; if (!$season OR !$league OR !$team_id)
} {
if (!$league) $data_plan = false;
{ if (!$season)
$error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />'; {
} $error_message .= sprintf($user->lang['NO_SEASON']) . '<br />';
if (!$team_id) }
{ if (!$league)
$error_message .= sprintf($user->lang['NO_TEAM_ID']) . '<br />'; {
} $error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />';
} }
else if (!$team_id)
{ {
$data_group = false; $error_message .= sprintf($user->lang['NO_TEAM_ID']) . '<br />';
$lang_dates = $user->lang['datetime']; }
}
else
// Calculate matches and bets of matchday {
$sql = "SELECT $data_group = false;
IF(m.team_id_home = $team_id, 'H', 'A') AS match_place, $lang_dates = $user->lang['datetime'];
IF(((m.status=3) OR (m.status=6)),
IF(m.team_id_home = $team_id,
IF(m.goals_home + 0 > m.goals_guest, 'match_win', IF(m.goals_home = m.goals_guest, 'match_draw', 'match_lost')), // Calculate matches and bets of matchday
IF(m.goals_home + 0 < m.goals_guest, 'match_win', IF(m.goals_home = m.goals_guest, 'match_draw', 'match_lost'))), $sql = "SELECT
'') AS match_style, IF(m.team_id_home = $team_id, 'H', 'A') AS match_place,
m.match_no, IF(((m.status=3) OR (m.status=6)),
m.matchday, IF(m.team_id_home = $team_id,
m.status, IF(m.goals_home + 0 > m.goals_guest, 'match_win', IF(m.goals_home = m.goals_guest, 'match_draw', 'match_lost')),
m.group_id, IF(m.goals_home + 0 < m.goals_guest, 'match_win', IF(m.goals_home = m.goals_guest, 'match_draw', 'match_lost'))),
t1.team_symbol AS home_symbol, '') AS match_style,
t2.team_symbol AS guest_symbol, m.match_no,
t1.team_id AS home_id, m.matchday,
t2.team_id AS guest_id, m.status,
t1.team_name AS home_name, m.group_id,
t2.team_name AS guest_name, t1.team_symbol AS home_symbol,
t1.team_name_short AS home_short, t2.team_symbol AS guest_symbol,
t2.team_name_short AS guest_short, t1.team_id AS home_id,
m.goals_home, t2.team_id AS guest_id,
m.goals_guest, t1.team_name AS home_name,
CONCAT( t2.team_name AS guest_name,
CASE DATE_FORMAT(m.match_datetime,'%w') t1.team_name_short AS home_short,
WHEN 0 THEN '" . $lang_dates['Sun'] . "' t2.team_name_short AS guest_short,
WHEN 1 THEN '" . $lang_dates['Mon'] . "' m.goals_home,
WHEN 2 THEN '" . $lang_dates['Tue'] . "' m.goals_guest,
WHEN 3 THEN '" . $lang_dates['Wed'] . "' CONCAT(
WHEN 4 THEN '" . $lang_dates['Thu'] . "' CASE DATE_FORMAT(m.match_datetime,'%w')
WHEN 5 THEN '" . $lang_dates['Fri'] . "' WHEN 0 THEN '" . $lang_dates['Sun'] . "'
WHEN 6 THEN '" . $lang_dates['Sat'] . "' WHEN 1 THEN '" . $lang_dates['Mon'] . "'
ELSE 'Error' END, WHEN 2 THEN '" . $lang_dates['Tue'] . "'
DATE_FORMAT(m.match_datetime,' %d.%m. %H:%i') WHEN 3 THEN '" . $lang_dates['Wed'] . "'
) AS match_time WHEN 4 THEN '" . $lang_dates['Thu'] . "'
FROM " . FOOTB_MATCHES . ' AS m WHEN 5 THEN '" . $lang_dates['Fri'] . "'
LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id=m.team_id_home) WHEN 6 THEN '" . $lang_dates['Sat'] . "'
LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id=m.team_id_guest) ELSE 'Error' END,
WHERE m.season = $season DATE_FORMAT(m.match_datetime,' %d.%m. %H:%i')
AND m.league = $league ) AS match_time
AND (m.team_id_home = $team_id OR m.team_id_guest = $team_id) FROM " . FOOTB_MATCHES . ' AS m
$where LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id=m.team_id_home)
GROUP BY m.match_no LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id=m.team_id_guest)
ORDER BY m.match_datetime ASC, m.match_no ASC"; WHERE m.season = $season
$result = $db->sql_query($sql); AND m.league = $league
if ($row = $db->sql_fetchrow($result)) AND (m.team_id_home = $team_id OR m.team_id_guest = $team_id)
{ $where
$data_plan = true; GROUP BY m.match_no
$matchnumber = 0; ORDER BY m.match_datetime ASC, m.match_no ASC";
$ext_path = $this->phpbb_path_helper->update_web_root_path($this->phpbb_extension_manager->get_extension_path('football/football', true)); $result = $db->sql_query($sql);
do if ($row = $db->sql_fetchrow($result))
{ {
$matchnumber++ ; $data_plan = true;
$row_class = (!($matchnumber % 2)) ? 'bg1 row_light' : 'bg2 row_dark'; $matchnumber = 0;
$display_link = true; $ext_path = $this->phpbb_path_helper->update_web_root_path($this->phpbb_extension_manager->get_extension_path('football/football', true));
$homelogo = $row['home_symbol']; do
$guestlogo = $row['guest_symbol']; {
if ($homelogo <> '') $matchnumber++ ;
{ $row_class = (!($matchnumber % 2)) ? 'bg1 row_light' : 'bg2 row_dark';
$logoH = "<img src=\"" . $ext_path . 'images/flags/' . $homelogo . "\" alt=\"" . $homelogo . "\" width=\"28\" height=\"28\"/>" ; $display_link = true;
} $homelogo = $row['home_symbol'];
else $guestlogo = $row['guest_symbol'];
{ if ($homelogo <> '')
$logoH = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"28\" height=\"28\"/>" ; {
} $logoH = "<img src=\"" . $ext_path . 'images/flags/' . $homelogo . "\" alt=\"" . $homelogo . "\" width=\"28\" height=\"28\"/>" ;
if ($guestlogo <> '') }
{ else
$logoG = "<img src=\"" . $ext_path . 'images/flags/' . $guestlogo . "\" alt=\"" . $guestlogo . "\" width=\"28\" height=\"28\"/>" ; {
} $logoH = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"28\" height=\"28\"/>" ;
else }
{ if ($guestlogo <> '')
$logoG = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"28\" height=\"28\"/>" ; {
} $logoG = "<img src=\"" . $ext_path . 'images/flags/' . $guestlogo . "\" alt=\"" . $guestlogo . "\" width=\"28\" height=\"28\"/>" ;
}
if ($row['group_id'] == '') else
{ {
$group_id = '&nbsp;'; $logoG = "<img src=\"" . $ext_path . "images/flags/blank.gif\" alt=\"\" width=\"28\" height=\"28\"/>" ;
} }
else
{ if ($row['group_id'] == '')
$data_group = true; {
$group_id = $row['group_id']; $group_id = '&nbsp;';
} }
else
if ($row['match_place'] == 'H') {
{ $data_group = true;
$color_home = $row['match_style']; $group_id = $row['group_id'];
$color_guest = ''; }
}
else if ($row['match_place'] == 'H')
{ {
$color_home = ''; $color_home = $row['match_style'];
$color_guest = $row['match_style']; $color_guest = '';
} }
$color_goals = $row['match_style']; else
{
$template->assign_block_vars('match', array( $color_home = '';
'ROW_CLASS' => $row_class, $color_guest = $row['match_style'];
'MATCH_TIME' => $row['match_time'], }
'GROUP' => $group_id, $color_goals = $row['match_style'];
'LOGO_HOME' => $logoH,
'LOGO_GUEST' => $logoG, $template->assign_block_vars('match', array(
'HOME_NAME' => $row['home_short'], 'ROW_CLASS' => $row_class,
'GUEST_NAME' => $row['guest_short'], 'MATCH_TIME' => $row['match_time'],
'GOALS_HOME' => ($row['goals_home'] == '') ? '&nbsp;' : $row['goals_home'], 'GROUP' => $group_id,
'GOALS_GUEST' => ($row['goals_guest'] == '') ? '&nbsp;' : $row['goals_guest'], 'LOGO_HOME' => $logoH,
'COLOR_HOME' => $color_home, 'LOGO_GUEST' => $logoG,
'COLOR_GUEST' => $color_guest, 'HOME_NAME' => $row['home_short'],
'COLOR_GOALS' => $color_goals, 'GUEST_NAME' => $row['guest_short'],
) 'GOALS_HOME' => ($row['goals_home'] == '') ? '&nbsp;' : $row['goals_home'],
); 'GOALS_GUEST' => ($row['goals_guest'] == '') ? '&nbsp;' : $row['goals_guest'],
} 'COLOR_HOME' => $color_home,
while ($row = $db->sql_fetchrow($result)); 'COLOR_GUEST' => $color_guest,
$db->sql_freeresult($result); 'COLOR_GOALS' => $color_goals,
} )
else );
{ }
$data_plan = false; while ($row = $db->sql_fetchrow($result));
} $db->sql_freeresult($result);
}
$season_info = season_info($season); else
if (sizeof($season_info) == 0) {
{ $data_plan = false;
$error_message .= sprintf($user->lang['NO_SEASON']) . '<br />'; }
$season_name = '';
} $season_info = season_info($season);
else if (sizeof($season_info) == 0)
{ {
$season_name = $season_info["season_name"]; $error_message .= sprintf($user->lang['NO_SEASON']) . '<br />';
$season_name = '';
$league_info = league_info($season, $league); }
if (sizeof($league_info) == 0) else
{ {
$error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />'; $season_name = $season_info["season_name"];
$league_name = '';
$league_info = league_info($season, $league);
} if (sizeof($league_info) == 0)
else {
{ $error_message .= sprintf($user->lang['NO_LEAGUE']) . '<br />';
$league_name = $league_info["league_name"]; $league_name = '';
$team_info = team_info($season, $league, $team_id); }
if (sizeof($team_info) == 0) else
{ {
$error_message .= sprintf($user->lang['NO_TEAM_ID']) . '<br />'; $league_name = $league_info["league_name"];
$team_name = '';
$logo = ''; $team_info = team_info($season, $league, $team_id);
} if (sizeof($team_info) == 0)
else {
{ $error_message .= sprintf($user->lang['NO_TEAM_ID']) . '<br />';
$team_name = $team_info["team_name"]; $team_name = '';
$logo = "<img src=\"" . $ext_path . 'images/flags/' . $team_info["team_symbol"] . "\" alt=\"" . $team_info["team_symbol"] . "\" width=\"28\" height=\"28\"/>" ; $logo = '';
} }
} else
} {
} $team_name = $team_info["team_name"];
$logo = "<img src=\"" . $ext_path . 'images/flags/' . $team_info["team_symbol"] . "\" alt=\"" . $team_info["team_symbol"] . "\" width=\"28\" height=\"28\"/>" ;
$sidename = sprintf($user->lang['PLAN']); }
if ($data_plan) }
{ }
$template->assign_vars(array( }
'S_SIDENAME' => $sidename,
'S_DATA_PLAN' => $data_plan, $sidename = sprintf($user->lang['PLAN']);
'S_DATA_GROUP' => $data_group, if ($data_plan)
'S_ERROR_MESSAGE' => $error_message, {
'MODE_DESC' => $mode_desc, $template->assign_vars(array(
'LOGO' => $logo, 'S_SIDENAME' => $sidename,
'TEAM' => $team_name, 'S_DATA_PLAN' => $data_plan,
'SEASON' => $season_name, 'S_DATA_GROUP' => $data_group,
'LEAGUE' => $league_name, 'S_ERROR_MESSAGE' => $error_message,
'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'), 'MODE_DESC' => $mode_desc,
'S_DATA_RESULTS' => $data_results, 'LOGO' => $logo,
) 'TEAM' => $team_name,
); 'SEASON' => $season_name,
'LEAGUE' => $league_name,
// output page 'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'),
page_header($mode_desc . ' ' . $team_name); 'S_DATA_RESULTS' => $data_results,
} )
else );
{
$template->assign_vars(array( // output page
'S_SIDENAME' => $sidename, page_header($mode_desc . ' ' . $team_name);
'S_DATA_PLAN' => $data_plan, }
'S_DATA_GROUP' => false, else
'S_ERROR_MESSAGE' => $error_message, {
'MODE_DESC' => $mode_desc, $template->assign_vars(array(
'LOGO' => '', 'S_SIDENAME' => $sidename,
'TEAM' => '', 'S_DATA_PLAN' => $data_plan,
'SEASON' => '', 'S_DATA_GROUP' => false,
'LEAGUE' => '', 'S_ERROR_MESSAGE' => $error_message,
'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'), 'MODE_DESC' => $mode_desc,
'S_DATA_RESULTS' => false, 'LOGO' => '',
) 'TEAM' => '',
); 'SEASON' => '',
'LEAGUE' => '',
// output page 'S_FOOTBALL_COPY' => sprintf($user->lang['FOOTBALL_COPY'], $config['football_version'], $phpbb_root_path . 'football/'),
page_header($mode_desc); 'S_DATA_RESULTS' => false,
} )
$template->set_filenames(array( );
'body' => 'viewplan_popup.html')
); // output page
page_header($mode_desc);
page_footer(); }
$template->set_filenames(array(
?> 'body' => 'viewplan_popup.html')
);
page_footer();

View File

@@ -1,29 +1,30 @@
{ {
"name": "football/football", "name" : "football/football",
"type": "phpbb-extension", "type" : "phpbb-extension",
"description": "Football Prediction League", "description" : "Football Prediction League",
"homepage": "http://football.bplaced.net", "homepage" : "http://football.bplaced.net",
"version": "0.9.9", "version" : "0.9.9",
"time": "2017-09-09", "time" : "2021-04-04",
"license": "GPL-2.0", "license" : "GPL-2.0-only",
"authors": [{ "authors" : [{
"name": "J. Helmke", "name" : "J. Helmke",
"email": "phpBB3.football@gmx.de", "email" : "phpBB3.football@gmx.de",
"homepage": "http://football.bplaced.net", "homepage" : "http://football.bplaced.net",
"role": "Lead Developer" "role" : "Lead Developer"
}], }
"require": { ],
"php": ">=5.3.3" "require" : {
"php" : ">=5.3.3"
}, },
"extra": { "extra" : {
"display-name": "Football Prediction League", "display-name" : "Football Prediction League",
"soft-require": { "soft-require" : {
"phpbb/phpbb": ">3.1.*" "phpbb/phpbb" : ">=3.2.8,<3.4"
}, },
"version-check": { "version-check" : {
"host": "football.bplaced.net", "host" : "football.bplaced.net",
"directory": "/updatecheck", "directory" : "/updatecheck",
"filename": "football_predictionleague.json" "filename" : "football_predictionleague.json"
} }
} }
} }

View File

@@ -1,4 +1,4 @@
football_main_controller: football_football_controller:
path: /football/{side} path: /football/{side}
defaults: { _controller: football.football.controller:handle } defaults: { _controller: football.football.controller:handle }

View File

@@ -23,8 +23,8 @@ services:
- '@template' - '@template'
- '@user' - '@user'
- '@pagination' - '@pagination'
- %core.root_path% - '%core.root_path%'
- %core.php_ext% - '%core.php_ext%'
football.football.controller_popup: football.football.controller_popup:
class: football\football\controller\popup class: football\football\controller\popup
@@ -38,8 +38,8 @@ services:
- '@template' - '@template'
- '@user' - '@user'
- '@pagination' - '@pagination'
- %core.root_path% - '%core.root_path%'
- %core.php_ext% - '%core.php_ext%'
football.football.controller_download: football.football.controller_download:
class: football\football\controller\download class: football\football\controller\download
@@ -52,14 +52,14 @@ services:
- '@controller.helper' - '@controller.helper'
- '@template' - '@template'
- '@user' - '@user'
- %core.root_path% - '%core.root_path%'
- %core.php_ext% - '%core.php_ext%'
football.football.version.check: football.football.version.check:
class: football\football\includes\version_check class: football\football\includes\version_check
scope: prototype scope: prototype
arguments: arguments:
- %football.version_data% - '%football.version_data%'
- '@config' - '@config'
- '@version_helper' - '@version_helper'
- '@template' - '@template'
@@ -73,8 +73,8 @@ services:
- '@path_helper' - '@path_helper'
- '@dbal.conn' - '@dbal.conn'
- '@user' - '@user'
- %core.root_path% - '%core.root_path%'
- %core.php_ext% - '%core.php_ext%'
football.football.core.functions.points: football.football.core.functions.points:
class: football\football\core\functions_points class: football\football\core\functions_points
@@ -92,16 +92,16 @@ services:
- '@path_helper' - '@path_helper'
- '@ext.manager' - '@ext.manager'
- '@user' - '@user'
- %core.root_path% - '%core.root_path%'
- %core.php_ext% - '%core.php_ext%'
tags: tags:
- { name: event.listener } - { name: event.listener }
football.football.cron.task.football_remember: football.football.cron.task.football_remember:
class: football\football\cron\task\football_remember class: football\football\cron\task\football_remember
arguments: arguments:
- %core.root_path% - '%core.root_path%'
- %core.php_ext% - '%core.php_ext%'
- '@ext.manager' - '@ext.manager'
- '@path_helper' - '@path_helper'
- '@dbal.conn' - '@dbal.conn'

View File

@@ -122,7 +122,6 @@ class download
{ {
$message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED'; $message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED';
trigger_error($message); trigger_error($message);
exit;
} }
// Can this user view Prediction Leagues pages? // Can this user view Prediction Leagues pages?

View File

@@ -45,7 +45,7 @@ class main
/* @var \phpbb\user */ /* @var \phpbb\user */
protected $user; protected $user;
/** @var \phpbb\pagination */ /* @var \phpbb\pagination */
protected $pagination; protected $pagination;
/* @var phpBB root path */ /* @var phpBB root path */
@@ -137,7 +137,6 @@ class main
{ {
$message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED'; $message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED';
trigger_error($message); trigger_error($message);
exit;
} }
// Can this user view Prediction Leagues pages? // Can this user view Prediction Leagues pages?
@@ -753,18 +752,18 @@ class main
INNER JOIN ' . FOOTB_LEAGUES . ' AS l ON (l.season = s.season) INNER JOIN ' . FOOTB_LEAGUES . ' AS l ON (l.season = s.season)
INNER JOIN ' . FOOTB_MATCHDAYS . ' AS sp ON (sp.season = s.season AND sp.league = l.league) INNER JOIN ' . FOOTB_MATCHDAYS . ' AS sp ON (sp.season = s.season AND sp.league = l.league)
WHERE 1 WHERE 1
ORDER BY season DESC'; ORDER BY s.season DESC';
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
while( $row = $db->sql_fetchrow($result)) while( $row = $db->sql_fetchrow($result))
{ {
$selected = ($season && $row['season'] == $season) ? ' selected="selected"' : ''; $selected = ($season && $row['season'] == $season) ? ' selected="selected"' : '';
if ($selected) if ($selected)
{ {
$season_name = htmlspecialchars($row['season_name_short']); $season_name = utf8_htmlspecialchars($row['season_name_short']);
} }
$template->assign_block_vars('form_season', array( $template->assign_block_vars('form_season', array(
'S_SEASON' => htmlspecialchars($row['season']), 'S_SEASON' => utf8_htmlspecialchars($row['season']),
'S_SEASONNAME' => htmlspecialchars($row['season_name_short']), 'S_SEASONNAME' => utf8_htmlspecialchars($row['season_name_short']),
'S_SELECTED' => $selected)); 'S_SELECTED' => $selected));
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
@@ -825,8 +824,8 @@ class main
} }
$template->assign_block_vars('form_league', array( $template->assign_block_vars('form_league', array(
'S_LEAGUE' => $row['league'], 'S_LEAGUE' => $row['league'],
'S_LEAGUENAME' => $row['league_name'], 'S_LEAGUENAME' => $row['league_name'],
'S_SELECTED' => $selected 'S_SELECTED' => $selected
) )
); );
} }
@@ -937,7 +936,7 @@ class main
// Start matchday list // Start matchday list
if ($side == 'bet') if ($side == 'bet')
{ {
} }
else else
{ {
@@ -953,12 +952,12 @@ class main
//***************************************************************************** //*****************************************************************************
} }
if ($side == 'bet') if ($side == 'bet')
{ {
include($this->football_root_path . 'block/table.' . $this->php_ext); include($this->football_root_path . 'block/table.' . $this->php_ext);
} }
// Start assign vars // Start assign vars
$sql_ary = array( $sql_ary = array(
'football_season' => (int) $season, 'football_season' => (int) $season,
@@ -977,9 +976,9 @@ class main
$print_start = ($start) ? "start=$start&amp;" : ''; $print_start = ($start) ? "start=$start&amp;" : '';
$template->assign_vars(array( $template->assign_vars(array(
'U_PRINT_FOOTBALL' => $this->helper->route('football_main_controller', array('side' => $side, 's' => $season, 'l' => $league, 'm' => $matchday, 'view' => 'print')), 'U_PRINT_FOOTBALL' => $this->helper->route('football_football_controller', array('side' => $side, 's' => $season, 'l' => $league, 'm' => $matchday, 'view' => 'print')),
'U_MOBILE_SWITCH' => $this->helper->route('football_main_controller', array('side' => $side, 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'switch')), 'U_MOBILE_SWITCH' => $this->helper->route('football_football_controller', array('side' => $side, 's' => $season, 'l' => $league, 'm' => $matchday, 'action' => 'switch')),
'U_SIDE_LINK' => $this->helper->route('football_main_controller', array('side' => $side, 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_SIDE_LINK' => $this->helper->route('football_football_controller', array('side' => $side, 's' => $season, 'l' => $league, 'm' => $matchday)),
'L_TOP_RANKSP' => sprintf($user->lang['RANKING']) . ' ' . $matchday . '. ' . sprintf($user->lang['MATCHDAY']), 'L_TOP_RANKSP' => sprintf($user->lang['RANKING']) . ' ' . $matchday . '. ' . sprintf($user->lang['MATCHDAY']),
'L_TOP_RANKGESAMT' => sprintf($user->lang['TOTAL_RANKING']) . ' ' . $matchday . '. ' . sprintf($user->lang['MATCHDAY']), 'L_TOP_RANKGESAMT' => sprintf($user->lang['TOTAL_RANKING']) . ' ' . $matchday . '. ' . sprintf($user->lang['MATCHDAY']),
'PHPBB_ROOT_PATH' => $this->phpbb_root_path, 'PHPBB_ROOT_PATH' => $this->phpbb_root_path,
@@ -998,13 +997,13 @@ class main
'S_SEASON_NAME' => $season_name, 'S_SEASON_NAME' => $season_name,
'S_LEAGUE_NAME' => $league_name, 'S_LEAGUE_NAME' => $league_name,
'S_MATCHDAY_NAME' => $matchday_name, 'S_MATCHDAY_NAME' => $matchday_name,
'S_FORMSELF' => $this->helper->route('football_main_controller', array('side' => $side)), 'S_FORMSELF' => $this->helper->route('football_football_controller', array('side' => $side)),
'S_DELIVERY' => delivery($season, $league, $matchday), 'S_DELIVERY' => delivery($season, $league, $matchday),
// For nav_delivery // For nav_delivery
'S_PREV_LINK' => $prev_link, 'S_PREV_LINK' => $prev_link,
'S_PREV_CLASS' => $prev_class, 'S_PREV_CLASS' => $prev_class,
'S_PREV_DEADLINE' => $prev_deadline, 'S_PREV_DEADLINE' => $prev_deadline,
'S_CURR_LINK' => $this->helper->route('football_main_controller', array('side' => $side, 's' => $season, 'l' => $league)), 'S_CURR_LINK' => $this->helper->route('football_football_controller', array('side' => $side, 's' => $season, 'l' => $league)),
'S_CURR_MATCHDAY' => $curr_matchday, 'S_CURR_MATCHDAY' => $curr_matchday,
'S_NEXT_LINK' => $next_link, 'S_NEXT_LINK' => $next_link,
'S_NEXT_CLASS' => $next_class, 'S_NEXT_CLASS' => $next_class,

View File

@@ -39,7 +39,7 @@ class popup
/* @var \phpbb\user */ /* @var \phpbb\user */
protected $user; protected $user;
/** @var \phpbb\pagination */ /* @var \phpbb\pagination */
protected $pagination; protected $pagination;
/* @var phpBB root path */ /* @var phpBB root path */
@@ -128,7 +128,6 @@ class popup
{ {
$message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED'; $message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED';
trigger_error($message); trigger_error($message);
exit;
} }
// Can this user view Prediction Leagues pages? // Can this user view Prediction Leagues pages?

View File

@@ -105,7 +105,6 @@ class xmlplan
{ {
$message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED'; $message = (!empty($config['football_disable_msg'])) ? $config['football_disable_msg'] : 'FOOTBALL_DISABLED';
trigger_error($message); trigger_error($message);
exit;
} }

View File

@@ -42,7 +42,7 @@ class football_remember extends \phpbb\cron\task\base
* @param string $php_ext * @param string $php_ext
* @param \phpbb\extension\manager $phpbb_extension_manager * @param \phpbb\extension\manager $phpbb_extension_manager
* @param \phpbb\path_helper $phpbb_path_helper * @param \phpbb\path_helper $phpbb_path_helper
* @param \phpbb\db\driver\driver_interfacer $db * @param \phpbb\db\driver\driver_interface $db
* @param \phpbb\config\config $config * @param \phpbb\config\config $config
* @param \phpbb\log\log_interface $log * @param \phpbb\log\log_interface $log
* @param \phpbb\user $user * @param \phpbb\user $user
@@ -333,4 +333,3 @@ class football_remember extends \phpbb\cron\task\base
} }
} }
} }
?>

View File

@@ -129,7 +129,7 @@ class main_listener implements EventSubscriberInterface
} }
else else
{ {
$event['location_url'] = $this->controller_helper->route('football_main_controller', array_merge(array('side' => $url_parts['base']), $url_parts['params'])); $event['location_url'] = $this->controller_helper->route('football_football_controller', array_merge(array('side' => $url_parts['base']), $url_parts['params']));
} }
$db->sql_freeresult($result); $db->sql_freeresult($result);
} }
@@ -137,7 +137,7 @@ class main_listener implements EventSubscriberInterface
{ {
$event['location'] = $this->user->lang('VIEWING_FOOTBALL' . (empty($url_parts['base']) ? '' : '_' . strtoupper ($url_parts['base']))); $event['location'] = $this->user->lang('VIEWING_FOOTBALL' . (empty($url_parts['base']) ? '' : '_' . strtoupper ($url_parts['base'])));
} }
$event['location_url'] = $this->controller_helper->route('football_main_controller', array_merge(array('side' => $url_parts['base']), $url_parts['params'])); $event['location_url'] = $this->controller_helper->route('football_football_controller', array_merge(array('side' => $url_parts['base']), $url_parts['params']));
} }
} }
@@ -217,20 +217,20 @@ class main_listener implements EventSubscriberInterface
'S_FOOTBALL_HEADER_LEAGUE' => $league, 'S_FOOTBALL_HEADER_LEAGUE' => $league,
'S_FOOTBALL_EXT_PATH' => $ext_path, 'S_FOOTBALL_EXT_PATH' => $ext_path,
'S_FOOTBALL_HEADER_ENABLED' => $this->config['football_header_enable'] ? $in_football_ext : false, 'S_FOOTBALL_HEADER_ENABLED' => $this->config['football_header_enable'] ? $in_football_ext : false,
'U_FOOTBALL' => $this->controller_helper->route('football_main_controller', array('side' => 'bet')), 'U_FOOTBALL' => $this->controller_helper->route('football_football_controller', array('side' => 'bet')),
'U_BET' => $this->controller_helper->route('football_main_controller', array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_BET' => $this->controller_helper->route('football_football_controller', array('side' => 'bet', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_ALL_BETS' => $this->controller_helper->route('football_main_controller', array('side' => 'all_bets', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_ALL_BETS' => $this->controller_helper->route('football_football_controller', array('side' => 'all_bets', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_RESULTS' => $this->controller_helper->route('football_main_controller', array('side' => 'results', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_RESULTS' => $this->controller_helper->route('football_football_controller', array('side' => 'results', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_RESULTS_TL' => $this->controller_helper->route('football_main_controller', array('side' => 'results_tl', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_RESULTS_TL' => $this->controller_helper->route('football_football_controller', array('side' => 'results_tl', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_TABLE' => $this->controller_helper->route('football_main_controller', array('side' => 'table', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_TABLE' => $this->controller_helper->route('football_football_controller', array('side' => 'table', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_RANKS_TOTAL' => $this->controller_helper->route('football_main_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_RANKS_TOTAL' => $this->controller_helper->route('football_football_controller', array('side' => 'ranks_total', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_RANKS_MATCHDAY' => $this->controller_helper->route('football_main_controller', array('side' => 'ranks_matchday', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_RANKS_MATCHDAY' => $this->controller_helper->route('football_football_controller', array('side' => 'ranks_matchday', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_DELIVERY_LIST' => $this->controller_helper->route('football_main_controller', array('side' => 'delivery', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_DELIVERY_LIST' => $this->controller_helper->route('football_football_controller', array('side' => 'delivery', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_LAST_VISITORS' => $this->controller_helper->route('football_main_controller', array('side' => 'last_users', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_LAST_VISITORS' => $this->controller_helper->route('football_football_controller', array('side' => 'last_users', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_FOOTBALL_BANK' => $this->controller_helper->route('football_main_controller', array('side' => 'bank', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_FOOTBALL_BANK' => $this->controller_helper->route('football_football_controller', array('side' => 'bank', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_RULES' => $this->controller_helper->route('football_football_popup', array('popside' => 'rules_popup', 's' => $season, 'l' => $league)), 'U_RULES' => $this->controller_helper->route('football_football_popup', array('popside' => 'rules_popup', 's' => $season, 'l' => $league)),
'U_EXPORT' => $this->controller_helper->route('football_football_download', array('downside' => 'dload_export', 's' => $season, 'l' => $league)), 'U_EXPORT' => $this->controller_helper->route('football_football_download', array('downside' => 'dload_export', 's' => $season, 'l' => $league)),
'U_ODDS' => $this->controller_helper->route('football_main_controller', array('side' => 'odds', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_ODDS' => $this->controller_helper->route('football_football_controller', array('side' => 'odds', 's' => $season, 'l' => $league, 'm' => $matchday)),
'S_MENU_LINK1' => (strlen($this->config['football_menu_link1']) > 4) ? true : false, 'S_MENU_LINK1' => (strlen($this->config['football_menu_link1']) > 4) ? true : false,
'U_MENU_LINK1' => $this->config['football_menu_link1'], 'U_MENU_LINK1' => $this->config['football_menu_link1'],
'MENU_DESC_LINK1' => $this->config['football_menu_desc1'], 'MENU_DESC_LINK1' => $this->config['football_menu_desc1'],
@@ -240,14 +240,14 @@ class main_listener implements EventSubscriberInterface
'S_MENU_LINK3' => (strlen($this->config['football_menu_link3']) > 4) ? true : false, 'S_MENU_LINK3' => (strlen($this->config['football_menu_link3']) > 4) ? true : false,
'U_MENU_LINK3' => (strpos($this->config['football_menu_link3'], 'xml/league.php') === false) ? $this->config['football_menu_link3'] : $this->config['football_menu_link3'] . "&season=$season&league=$league", 'U_MENU_LINK3' => (strpos($this->config['football_menu_link3'], 'xml/league.php') === false) ? $this->config['football_menu_link3'] : $this->config['football_menu_link3'] . "&season=$season&league=$league",
'MENU_DESC_LINK3' => $this->config['football_menu_desc3'], 'MENU_DESC_LINK3' => $this->config['football_menu_desc3'],
'U_MY_BETS' => $this->controller_helper->route('football_main_controller', array('side' => 'my_bets', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_MY_BETS' => $this->controller_helper->route('football_football_controller', array('side' => 'my_bets', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_MY_POINTS' => $this->controller_helper->route('football_main_controller', array('side' => 'my_points', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_MY_POINTS' => $this->controller_helper->route('football_football_controller', array('side' => 'my_points', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_MY_TABLE' => $this->controller_helper->route('football_main_controller', array('side' => 'my_table', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_MY_TABLE' => $this->controller_helper->route('football_football_controller', array('side' => 'my_table', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_MY_RANK' => $this->controller_helper->route('football_main_controller', array('side' => 'my_rank', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_MY_RANK' => $this->controller_helper->route('football_football_controller', array('side' => 'my_rank', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_MY_CHART' => $this->controller_helper->route('football_main_controller', array('side' => 'my_chart', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_MY_CHART' => $this->controller_helper->route('football_football_controller', array('side' => 'my_chart', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_MY_KOEFF' => $this->controller_helper->route('football_main_controller', array('side' => 'my_koeff', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_MY_KOEFF' => $this->controller_helper->route('football_football_controller', array('side' => 'my_koeff', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_STAT_RESULTS' => $this->controller_helper->route('football_main_controller', array('side' => 'stat_results', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_STAT_RESULTS' => $this->controller_helper->route('football_football_controller', array('side' => 'stat_results', 's' => $season, 'l' => $league, 'm' => $matchday)),
'U_STAT_POINTS' => $this->controller_helper->route('football_main_controller', array('side' => 'stat_points', 's' => $season, 'l' => $league, 'm' => $matchday)), 'U_STAT_POINTS' => $this->controller_helper->route('football_football_controller', array('side' => 'stat_points', 's' => $season, 'l' => $league, 'm' => $matchday)),
)); ));
} }

View File

@@ -1,10 +1,10 @@
<html> <html>
<head> <head>
<title></title> <title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head> </head>
<body bgcolor="#FFFFFF" text="#000000"> <body bgcolor="#FFFFFF" text="#000000">
</body> </body>
</html> </html>

View File

@@ -1,66 +1,70 @@
<?php <?php
/** /**
* *
* @package Football * @package Football
* @version $Id: chart_hist.php 1 2010-05-17 22:09:43Z football $ * @version $Id: chart_hist.php 1 2010-05-17 22:09:43Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
$values1 = ( isset($_GET['v1']) ) ? $_GET['v1'] : 0; if (!defined('IN_PHPBB'))
$graphvalues1 = explode(",",$values1); {
$matchdays = sizeof($graphvalues1); exit;
}
// Define .PNG image
header("Content-type: image/png"); $values1 = ( isset($_GET['v1']) ) ? $_GET['v1'] : 0;
$horz = 15; $graphvalues1 = explode(",",$values1);
$vert = 9; $matchdays = sizeof($graphvalues1);
$start = 25;
$imgWidth= $matchdays * $vert + 20; // Define .PNG image
$imgHeight=90; header("Content-type: image/png");
$horz = 15;
// Create image and define colors $vert = 9;
$image = imagecreate($imgWidth, $imgHeight); $start = 25;
$colorBackground = imagecolorallocate($image, 236, 240, 246); $imgWidth= $matchdays * $vert + 20;
$colorWhite = imagecolorallocate($image, 255, 255, 255); $imgHeight=90;
$colorBlack = imagecolorallocate($image, 0, 0, 0);
$colorGrey = imagecolorallocate($image, 106, 106, 106); // Create image and define colors
$colorBlue = imagecolorallocate($image, 0, 0, 255); $image = imagecreate($imgWidth, $imgHeight);
$colorRed = imagecolorallocate($image, 176, 0, 0); $colorBackground = imagecolorallocate($image, 236, 240, 246);
$colorGreen = imagecolorallocate($image, 0, 176, 0); $colorWhite = imagecolorallocate($image, 255, 255, 255);
$colorBlack = imagecolorallocate($image, 0, 0, 0);
imagefill($image, 0, 0, $colorBackground); $colorGrey = imagecolorallocate($image, 106, 106, 106);
$colorBlue = imagecolorallocate($image, 0, 0, 255);
imageline($image, 0, 45, $imgWidth, 45, $colorGrey); $colorRed = imagecolorallocate($image, 176, 0, 0);
imagestring($image,4, 5, 15, 'H', $colorBlack); $colorGreen = imagecolorallocate($image, 0, 176, 0);
imagestring($image,4, 5, 60, 'A', $colorBlack);
imagefill($image, 0, 0, $colorBackground);
imagesetthickness($image, 5);
imageline($image, 0, 45, $imgWidth, 45, $colorGrey);
$count_values=count($graphvalues1); imagestring($image,4, 5, 15, 'H', $colorBlack);
// Create line graph imagestring($image,4, 5, 60, 'A', $colorBlack);
for ($i = 0; $i < $count_values; $i++)
{ imagesetthickness($image, 5);
if (substr($graphvalues1[$i],0,1) == '-')
{ $count_values=count($graphvalues1);
imageline($image, $start + ($i * $vert), 45, $start + ($i * $vert), substr($graphvalues1[$i], 1, strlen($graphvalues1[$i]) - 1), $colorRed); // Create line graph
} for ($i = 0; $i < $count_values; $i++)
else {
{ if (substr($graphvalues1[$i],0,1) == '-')
if (substr($graphvalues1[$i],0,1) == ' ') {
{ imageline($image, $start + ($i * $vert), 45, $start + ($i * $vert), substr($graphvalues1[$i], 1, strlen($graphvalues1[$i]) - 1), $colorRed);
imageline($image, $start + ($i * $vert), 45, $start + ($i * $vert), substr($graphvalues1[$i], 1, strlen($graphvalues1[$i]) - 1), $colorGreen); }
} else
else {
{ if (substr($graphvalues1[$i],0,1) == ' ')
imageline($image, $start + ($i * $vert), 45, $start + ($i * $vert), substr($graphvalues1[$i], 0, strlen($graphvalues1[$i])), $colorGrey); {
} imageline($image, $start + ($i * $vert), 45, $start + ($i * $vert), substr($graphvalues1[$i], 1, strlen($graphvalues1[$i]) - 1), $colorGreen);
} }
} else
{
// Output graph and clear image from memory imageline($image, $start + ($i * $vert), 45, $start + ($i * $vert), substr($graphvalues1[$i], 0, strlen($graphvalues1[$i])), $colorGrey);
imagepng($image); }
imagedestroy($image); }
?> }
// Output graph and clear image from memory
imagepng($image);
imagedestroy($image);

View File

@@ -1,126 +1,130 @@
<?php <?php
/** /**
* *
* @package Football * @package Football
* @version $Id: chart_points.php 1 2010-05-17 22:09:43Z football $ * @version $Id: chart_points.php 1 2010-05-17 22:09:43Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
if (!defined('IN_PHPBB'))
$matchdays = ( isset($_GET['m']) ) ? intval($_GET['m']) : 0; {
$values1 = ( isset($_GET['v1']) ) ? $_GET['v1'] : 0; exit;
$values2 = ( isset($_GET['v2']) ) ? $_GET['v2'] : 0; }
$values3 = ( isset($_GET['v3']) ) ? $_GET['v3'] : 0;
$values4 = ( isset($_GET['v4']) ) ? $_GET['v4'] : 0;
$valuesmin = ( isset($_GET['min']) ) ? $_GET['min'] : 0; $matchdays = ( isset($_GET['m']) ) ? intval($_GET['m']) : 0;
$valuesmax = ( isset($_GET['max']) ) ? $_GET['max'] : 0; $values1 = ( isset($_GET['v1']) ) ? $_GET['v1'] : 0;
$caption = ( isset($_GET['c']) ) ? $_GET['c'] : ''; $values2 = ( isset($_GET['v2']) ) ? $_GET['v2'] : 0;
$values3 = ( isset($_GET['v3']) ) ? $_GET['v3'] : 0;
$graphvalues1 = explode(",", $values1); $values4 = ( isset($_GET['v4']) ) ? $_GET['v4'] : 0;
$graphvalues2 = explode(",", $values2); $valuesmin = ( isset($_GET['min']) ) ? $_GET['min'] : 0;
$graphvalues3 = explode(",", $values3); $valuesmax = ( isset($_GET['max']) ) ? $_GET['max'] : 0;
$graphvalues4 = explode(",", $values4); $caption = ( isset($_GET['c']) ) ? $_GET['c'] : '';
$graphvaluesmin = explode(",", $valuesmin);
$graphvaluesmax = explode(",", $valuesmax); $graphvalues1 = explode(",", $values1);
$caption_lang = explode(",", $caption); $graphvalues2 = explode(",", $values2);
$graphvalues3 = explode(",", $values3);
// Define .PNG image $graphvalues4 = explode(",", $values4);
header("Content-type: image/png"); $graphvaluesmin = explode(",", $valuesmin);
$horz = 20; $graphvaluesmax = explode(",", $valuesmax);
$vert = 24; $caption_lang = explode(",", $caption);
$horzp = 4;
$maximum = max($graphvaluesmax); // Define .PNG image
$rows = (int) ($maximum / 5) + 2; header("Content-type: image/png");
$maximum = ($rows - 1) * 5; $horz = 20;
$imgWidth = $matchdays * $vert + 10; $vert = 24;
$imgHeight = $rows * $horz + 50; $horzp = 4;
$maximum = max($graphvaluesmax);
if ($imgWidth < 106) $rows = (int) ($maximum / 5) + 2;
$imgWidth = 106; $maximum = ($rows - 1) * 5;
$imgWidth = $matchdays * $vert + 10;
// Create image and define colors $imgHeight = $rows * $horz + 50;
$image=imagecreate($imgWidth, $imgHeight);
$colorWhite=imagecolorallocate($image, 255, 255, 255); if ($imgWidth < 106)
$colorBlack=imagecolorallocate($image, 0, 0, 0); $imgWidth = 106;
$colorGrey=imagecolorallocate($image, 192, 192, 192);
$colorBlue=imagecolorallocate($image, 0, 0, 255); // Create image and define colors
$colorRed=imagecolorallocate($image, 255, 0, 0); $image=imagecreate($imgWidth, $imgHeight);
$colorGreen=imagecolorallocate($image, 0, 255, 0); $colorWhite=imagecolorallocate($image, 255, 255, 255);
$colorAzur=imagecolorallocate($image, 0, 255, 255); $colorBlack=imagecolorallocate($image, 0, 0, 0);
$colorGrey=imagecolorallocate($image, 192, 192, 192);
// Create grid $colorBlue=imagecolorallocate($image, 0, 0, 255);
for ($i = 1; $i <= $rows; $i++) $colorRed=imagecolorallocate($image, 255, 0, 0);
{ $colorGreen=imagecolorallocate($image, 0, 255, 0);
imageline($image, $vert, $i * $horz, $imgWidth - 10, $i * $horz, $colorGrey); $colorAzur=imagecolorallocate($image, 0, 255, 255);
if ($i > ($rows - 2))
imagestring($image, 3, 10, $i * $horz - 6, $maximum - (($i - 1) * 5), $colorBlack); // Create grid
else for ($i = 1; $i <= $rows; $i++)
imagestring($image, 3, 3,$i * $horz - 6, $maximum - (($i - 1) * 5), $colorBlack); {
} imageline($image, $vert, $i * $horz, $imgWidth - 10, $i * $horz, $colorGrey);
imagestring($image, 1, 0, 0, $caption_lang[0] , $colorBlack); if ($i > ($rows - 2))
imagestring($image, 3, 10, $i * $horz - 6, $maximum - (($i - 1) * 5), $colorBlack);
else
// Create grid imagestring($image, 3, 3,$i * $horz - 6, $maximum - (($i - 1) * 5), $colorBlack);
for ($i = 1; $i <= $matchdays; $i++) }
{ imagestring($image, 1, 0, 0, $caption_lang[0] , $colorBlack);
$label = $i + 1;
imageline($image, $i * $vert, $horz, $i * $vert, $imgHeight - 50, $colorGrey);
if ($i < 10) // Create grid
imagestring($image,3,$i * $vert - 3, $imgHeight - 40, $i, $colorBlack); for ($i = 1; $i <= $matchdays; $i++)
else {
imagestring($image, 3, $i * $vert - 6, $imgHeight - 40, $i, $colorBlack); $label = $i + 1;
} imageline($image, $i * $vert, $horz, $i * $vert, $imgHeight - 50, $colorGrey);
if ($i < 10)
imageline($image, 3, $imgHeight - $horz + 6, 15, $imgHeight - $horz + 6, $colorBlack); imagestring($image,3,$i * $vert - 3, $imgHeight - 40, $i, $colorBlack);
imagestring($image, 3, 20, $imgHeight - $horz, $caption_lang[1] , $colorBlack); else
imagestring($image, 3, $i * $vert - 6, $imgHeight - 40, $i, $colorBlack);
imagesetthickness($image, 2); }
$count_values=count($graphvalues1); imageline($image, 3, $imgHeight - $horz + 6, 15, $imgHeight - $horz + 6, $colorBlack);
// Create line graph imagestring($image, 3, 20, $imgHeight - $horz, $caption_lang[1] , $colorBlack);
for ($i = 1; $i < $count_values; $i++)
{ imagesetthickness($image, 2);
imageline($image, $i * $vert, (($maximum - $graphvalues1[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues1[$i]) * $horzp + $horz), $colorBlue);
} $count_values=count($graphvalues1);
// Create line graph
$count_values=count($graphvalues2); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, (($maximum - $graphvalues1[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues1[$i]) * $horzp + $horz), $colorBlue);
{ }
imageline($image, $i * $vert, (($maximum - $graphvalues2[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues2[$i]) * $horzp + $horz), $colorGreen);
} $count_values=count($graphvalues2);
// Create line graph
$count_values=count($graphvalues3); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, (($maximum - $graphvalues2[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues2[$i]) * $horzp + $horz), $colorGreen);
{ }
imageline($image, $i * $vert, (($maximum - $graphvalues3[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues3[$i]) * $horzp + $horz), $colorAzur);
} $count_values=count($graphvalues3);
// Create line graph
$count_values=count($graphvalues4); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, (($maximum - $graphvalues3[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues3[$i]) * $horzp + $horz), $colorAzur);
{ }
imageline($image, $i * $vert, (($maximum - $graphvalues4[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues4[$i]) * $horzp + $horz), $colorRed);
} $count_values=count($graphvalues4);
// Create line graph
$count_values=count($graphvaluesmin); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, (($maximum - $graphvalues4[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvalues4[$i]) * $horzp + $horz), $colorRed);
{ }
imageline($image, $i * $vert, (($maximum - $graphvaluesmin[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvaluesmin[$i]) * $horzp + $horz), $colorBlack);
} $count_values=count($graphvaluesmin);
// Create line graph
$count_values=count($graphvaluesmax); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, (($maximum - $graphvaluesmin[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvaluesmin[$i]) * $horzp + $horz), $colorBlack);
{ }
imageline($image, $i * $vert, (($maximum - $graphvaluesmax[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvaluesmax[$i]) * $horzp + $horz), $colorBlack);
} $count_values=count($graphvaluesmax);
// Create line graph
// Output graph and clear image from memory for ($i = 1; $i < $count_values; $i++)
imagepng($image); {
imagedestroy($image); imageline($image, $i * $vert, (($maximum - $graphvaluesmax[$i - 1]) * $horzp + $horz), ($i + 1) * $vert, (($maximum - $graphvaluesmax[$i]) * $horzp + $horz), $colorBlack);
?> }
// Output graph and clear image from memory
imagepng($image);
imagedestroy($image);

View File

@@ -1,97 +1,101 @@
<?php <?php
/** /**
* *
* @package Football * @package Football
* @version $Id: chart_rank.php 1 2010-05-17 22:09:43Z football $ * @version $Id: chart_rank.php 1 2010-05-17 22:09:43Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
if (!defined('IN_PHPBB'))
$numb_users = ( isset($_GET['t']) ) ? intval($_GET['t']) : 0; {
$matchdays = ( isset($_GET['m']) ) ? intval($_GET['m']) : 0; exit;
$Values1 = ( isset($_GET['v1']) ) ? $_GET['v1'] : 0; }
$Values2 = ( isset($_GET['v2']) ) ? $_GET['v2'] : 0;
$Values3 = ( isset($_GET['v3']) ) ? $_GET['v3'] : 0;
$Values4 = ( isset($_GET['v4']) ) ? $_GET['v4'] : 0; $numb_users = ( isset($_GET['t']) ) ? intval($_GET['t']) : 0;
$caption = ( isset($_GET['c']) ) ? $_GET['c'] : ''; $matchdays = ( isset($_GET['m']) ) ? intval($_GET['m']) : 0;
$Values1 = ( isset($_GET['v1']) ) ? $_GET['v1'] : 0;
$graphValues1 = explode(",",$Values1); $Values2 = ( isset($_GET['v2']) ) ? $_GET['v2'] : 0;
$graphValues2 = explode(",",$Values2); $Values3 = ( isset($_GET['v3']) ) ? $_GET['v3'] : 0;
$graphValues3 = explode(",",$Values3); $Values4 = ( isset($_GET['v4']) ) ? $_GET['v4'] : 0;
$graphValues4 = explode(",",$Values4); $caption = ( isset($_GET['c']) ) ? $_GET['c'] : '';
// Define .PNG image $graphValues1 = explode(",",$Values1);
header("Content-type: image/png"); $graphValues2 = explode(",",$Values2);
$horz = 15; $graphValues3 = explode(",",$Values3);
$vert = 24; $graphValues4 = explode(",",$Values4);
$imgWidth=$matchdays * $vert + 10;
$imgHeight=$numb_users * $horz + 20; // Define .PNG image
header("Content-type: image/png");
// Create image and define colors $horz = 15;
$image=imagecreate($imgWidth, $imgHeight); $vert = 24;
$colorWhite=imagecolorallocate($image, 255, 255, 255); $imgWidth=$matchdays * $vert + 10;
$colorBlack=imagecolorallocate($image, 0, 0, 0); $imgHeight=$numb_users * $horz + 20;
$colorGrey=imagecolorallocate($image, 192, 192, 192);
$colorBlue=imagecolorallocate($image, 0, 0, 255); // Create image and define colors
$colorRed=imagecolorallocate($image, 255, 0, 0); $image=imagecreate($imgWidth, $imgHeight);
$colorGreen=imagecolorallocate($image, 0, 255, 0); $colorWhite=imagecolorallocate($image, 255, 255, 255);
$colorAzur=imagecolorallocate($image, 0, 255, 255); $colorBlack=imagecolorallocate($image, 0, 0, 0);
$colorGrey=imagecolorallocate($image, 192, 192, 192);
// Create grid $colorBlue=imagecolorallocate($image, 0, 0, 255);
for ($i = 1; $i <= $numb_users; $i++) $colorRed=imagecolorallocate($image, 255, 0, 0);
{ $colorGreen=imagecolorallocate($image, 0, 255, 0);
imageline($image, $vert, $i * $horz, $imgWidth - 10, $i * $horz, $colorGrey); $colorAzur=imagecolorallocate($image, 0, 255, 255);
if ($i < 10)
imagestring($image,3,10,$i * $horz - 6,$i,$colorBlack); // Create grid
else for ($i = 1; $i <= $numb_users; $i++)
imagestring($image,3,3,$i * $horz - 6,$i,$colorBlack); {
} imageline($image, $vert, $i * $horz, $imgWidth - 10, $i * $horz, $colorGrey);
imagestring($image, 1, 0, 0, $caption, $colorBlack); if ($i < 10)
imagestring($image,3,10,$i * $horz - 6,$i,$colorBlack);
// Create grid else
for ($i = 1; $i <= $matchdays; $i++) imagestring($image,3,3,$i * $horz - 6,$i,$colorBlack);
{ }
$label = $i + 1; imagestring($image, 1, 0, 0, $caption, $colorBlack);
imageline($image, $i * $vert, $horz, $i * $vert, $imgHeight - 20, $colorGrey);
if ($i < 10) // Create grid
imagestring($image, 3,$i * $vert - 3,$imgHeight - $horz, $i, $colorBlack); for ($i = 1; $i <= $matchdays; $i++)
else {
imagestring($image, 3,$i * $vert - 6,$imgHeight - $horz, $i, $colorBlack); $label = $i + 1;
} imageline($image, $i * $vert, $horz, $i * $vert, $imgHeight - 20, $colorGrey);
if ($i < 10)
imagesetthickness($image, 2); imagestring($image, 3,$i * $vert - 3,$imgHeight - $horz, $i, $colorBlack);
else
$count_values=count($graphValues1); imagestring($image, 3,$i * $vert - 6,$imgHeight - $horz, $i, $colorBlack);
// Create line graph }
for ($i = 1; $i < $count_values; $i++)
{ imagesetthickness($image, 2);
imageline($image, $i * $vert, ($graphValues1[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues1[$i] * $horz), $colorBlue);
} $count_values=count($graphValues1);
// Create line graph
$count_values=count($graphValues2); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, ($graphValues1[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues1[$i] * $horz), $colorBlue);
{ }
imageline($image, $i * $vert, ($graphValues2[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues2[$i] * $horz), $colorGreen);
} $count_values=count($graphValues2);
// Create line graph
$count_values=count($graphValues3); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, ($graphValues2[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues2[$i] * $horz), $colorGreen);
{ }
imageline($image, $i * $vert, ($graphValues3[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues3[$i] * $horz), $colorAzur);
} $count_values=count($graphValues3);
// Create line graph
$count_values=count($graphValues4); for ($i = 1; $i < $count_values; $i++)
// Create line graph {
for ($i = 1; $i < $count_values; $i++) imageline($image, $i * $vert, ($graphValues3[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues3[$i] * $horz), $colorAzur);
{ }
imageline($image, $i * $vert, ($graphValues4[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues4[$i] * $horz), $colorRed);
} $count_values=count($graphValues4);
// Create line graph
// Output graph and clear image from memory for ($i = 1; $i < $count_values; $i++)
imagepng($image); {
imagedestroy($image); imageline($image, $i * $vert, ($graphValues4[$i - 1] * $horz), ($i + 1) * $vert, ($graphValues4[$i] * $horz), $colorRed);
?> }
// Output graph and clear image from memory
imagepng($image);
imagedestroy($image);

View File

@@ -16,7 +16,6 @@ global $table_prefix;
// Config constants // Config constants
define('FOOTB_BETS', $table_prefix . 'footb_bets'); define('FOOTB_BETS', $table_prefix . 'footb_bets');
define('FOOTB_CORR', $table_prefix . 'footb_corr');
define('FOOTB_EXTRA_BETS', $table_prefix . 'footb_extra_bets'); define('FOOTB_EXTRA_BETS', $table_prefix . 'footb_extra_bets');
define('FOOTB_EXTRA', $table_prefix . 'footb_extra'); define('FOOTB_EXTRA', $table_prefix . 'footb_extra');
define('FOOTB_LEAGUES', $table_prefix . 'footb_leagues'); define('FOOTB_LEAGUES', $table_prefix . 'footb_leagues');
@@ -47,4 +46,3 @@ define('LEAGUE_KO', 2);
define('FOOTB_BONUS_DAY', $table_prefix . 'footb_bonuspoints_day'); define('FOOTB_BONUS_DAY', $table_prefix . 'footb_bonuspoints_day');
define('FOOTB_CORR', $table_prefix . 'footb_corr'); define('FOOTB_CORR', $table_prefix . 'footb_corr');
?>

View File

@@ -22,25 +22,8 @@ if( !$result = $db->sql_query($sql) )
} }
$league_short = $db->sql_fetchfield('league_name_short'); $league_short = $db->sql_fetchfield('league_name_short');
$db->sql_freeresult($result); $db->sql_freeresult($result);
$export_file = $league_short . '_'. $season. '_Tipps.csv';
$path_attachment = './../../files/' . $export_file;
$newline = "\r\n"; $newline = "\r\n";
$phpbb_root_path = './../../';
if (!isset($_POST['send']))
{
header('Pragma: no-cache');
header("Content-Type: text/csv; name=\"$export_file\"");
header("Content-disposition: attachment; filename=$export_file");
// header('Content-Type: text/x-csv');
// header('Expires: ' . gmdate('D, d M Y H:i:m') . ' GMT');
// header('Content-Disposition: attachment; filename='. $export_file);
$phpbb_root_path = './../';
}
else
{
$phpbb_root_path = './../../';
}
$sql_users = 'SELECT DISTINCT $sql_users = 'SELECT DISTINCT
b.user_id, b.user_id,
@@ -78,7 +61,7 @@ $sql_bets = "SELECT
FROM " . FOOTB_MATCHES . ' AS m FROM " . FOOTB_MATCHES . ' AS m
LEFT JOIN ' . FOOTB_BETS . " AS b ON (b.season = m.season AND b.league = m.league AND b.match_no = m.match_no) LEFT JOIN ' . FOOTB_BETS . " AS b ON (b.season = m.season AND b.league = m.league AND b.match_no = m.match_no)
WHERE m.season = $season AND m.league = $league WHERE m.season = $season AND m.league = $league
ORDER BY matchday ASC, match_no ASC, user_id ASC"; ORDER BY m.matchday ASC, m.match_no ASC, b.user_id ASC";
if(!$result_users = $db->sql_query($sql_users)) if(!$result_users = $db->sql_query($sql_users))
{ {
@@ -96,16 +79,16 @@ foreach ($rows_users as $row_user)
$bet_column[$row_user['user_id']] = $lastcolumn; $bet_column[$row_user['user_id']] = $lastcolumn;
$j++; $j++;
} }
$export_row_users = "\"\";\"\";\"\";\"\";\"\";\"\";"; $csv_data_row_users = "\"\";\"\";\"\";\"\";\"\";\"\";";
for($j = 8; $j <= $lastcolumn; $j = $j + 3) for($j = 8; $j <= $lastcolumn; $j = $j + 3)
{ {
$export_row_users .= "\"\";\"\";\"" . $column[$j] . "\""; $csv_data_row_users .= "\"\";\"\";\"" . $column[$j] . "\"";
if($j != $lastcolumn) if($j != $lastcolumn)
{ {
$export_row_users .= ';'; $csv_data_row_users .= ';';
} }
} }
$export_row_users .= $newline; $csv_data_row_users .= $newline;
if( !$result_results = $db->sql_query($sql_results) ) if( !$result_results = $db->sql_query($sql_results) )
{ {
@@ -138,16 +121,16 @@ foreach ($rows_bets as $row_bet)
{ {
if ($lastcolumn > 0) if ($lastcolumn > 0)
{ {
$export_bets[$last_match_num] = ''; $csv_data_bets[$last_match_num] = '';
for($j=8; $j<=$lastcolumn; $j++) for($j=8; $j<=$lastcolumn; $j++)
{ {
$export_bets[$last_match_num] .= "\"" . $column[$j] . "\""; $csv_data_bets[$last_match_num] .= "\"" . $column[$j] . "\"";
if($j!=$lastcolumn) if($j!=$lastcolumn)
{ {
$export_bets[$last_match_num] .= ';'; $csv_data_bets[$last_match_num] .= ';';
} }
} }
$export_bets[$last_match_num] .= $newline; $csv_data_bets[$last_match_num] .= $newline;
} }
$column = array(); $column = array();
$last_match_num = $row_bet['match_no']; $last_match_num = $row_bet['match_no'];
@@ -157,21 +140,21 @@ foreach ($rows_bets as $row_bet)
$lastcolumn = $bet_column[$row_bet['user_id']] + 2; $lastcolumn = $bet_column[$row_bet['user_id']] + 2;
} }
} }
$export_bets[$last_match_num] = ''; $csv_data_bets[$last_match_num] = '';
for($j = 8; $j <= $lastcolumn; $j++) for($j = 8; $j <= $lastcolumn; $j++)
{ {
$export_bets[$last_match_num] .= "\"" . $column[$j] . "\""; $csv_data_bets[$last_match_num] .= "\"" . $column[$j] . "\"";
if($j != $lastcolumn) if($j != $lastcolumn)
{ {
$export_bets[$last_match_num] .= ';'; $csv_data_bets[$last_match_num] .= ';';
} }
} }
$export_bets[$last_match_num] .= $newline; $csv_data_bets[$last_match_num] .= $newline;
$last_matchday = 0; $last_matchday = 0;
$export= ''; $csv_data= '';
$export .= 'CSV;'. $league. ';'. $season. $newline; $csv_data .= 'CSV;'. $league. ';'. $season. $newline;
$i = 0; $i = 0;
foreach ($rows_results as $row_result) foreach ($rows_results as $row_result)
@@ -180,32 +163,32 @@ foreach ($rows_results as $row_result)
{ {
if ($last_matchday != 0) if ($last_matchday != 0)
{ {
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= ";;". str_replace("\"", "\"\"", $row_result['match_time']). $newline; $csv_data .= ";;". str_replace("\"", "\"\"", $row_result['match_time']). $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
} }
else else
{ {
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= ";;". str_replace("\"", "\"\"", $row_result['match_time']). $newline; $csv_data .= ";;". str_replace("\"", "\"\"", $row_result['match_time']). $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
$export .= $newline; $csv_data .= $newline;
} }
$export .= $export_row_users; $csv_data .= $csv_data_row_users;
$column = array(); $column = array();
$last_matchday = $row_result['matchday']; $last_matchday = $row_result['matchday'];
} }
@@ -242,30 +225,31 @@ foreach ($rows_results as $row_result)
$column[2] = ''; $column[2] = '';
$column[4] = ''; $column[4] = '';
} }
$export .= "\"" . $column[0] . "\";\"" . $column[1] . "\";\"" . $column[2] . "\";\"\";\"" . $column[4] . "\";\"\";\"\";\"\";"; $csv_data .= "\"" . $column[0] . "\";\"" . $column[1] . "\";\"" . $column[2] . "\";\"\";\"" . $column[4] . "\";\"\";\"\";\"\";";
if ($export_bets[$row_result['match_no']] == '') if ($csv_data_bets[$row_result['match_no']] == '')
{ {
$export .= $newline; $csv_data .= $newline;
} }
else else
{ {
$export .= $export_bets[$row_result['match_no']]; $csv_data .= $csv_data_bets[$row_result['match_no']];
} }
$column = array(); $column = array();
$i++; $i++;
} }
if (isset($_POST['send'])) // Output the csv file
{ $filename = $league_short . '_'. $season. '_Tipps.csv';
$fp = fopen($path_attachment , "b"); $fp = fopen('php://output', 'w');
ftruncate ($fp, 0);
rewind($fp); header('Content-Type: application/octet-stream');
fwrite ($fp, $export); header("Content-disposition: attachment; filename=\"" . basename($filename) . "\"");
fclose($fp); header('Expires: 0');
} header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
else header('Cache-Control: private', false);
{ header('Pragma: public');
echo utf8_decode($export); header('Content-Transfer-Encoding: binary');
exit;
} fwrite($fp, "\xEF\xBB\xBF"); // UTF-8 BOM
?> fwrite($fp, $csv_data);
fclose($fp);

View File

@@ -170,8 +170,8 @@ function save_ranking_matchday($season, $league, $matchday, $cash = false)
INNER JOIN ' . FOOTB_BETS . ' AS b ON (b.season = m.season AND b.league = m.league AND b.match_no = m.match_no) INNER JOIN ' . FOOTB_BETS . ' AS b ON (b.season = m.season AND b.league = m.league AND b.match_no = m.match_no)
INNER JOIN ' . USERS_TABLE . " AS u ON (b.user_id = u.user_id) INNER JOIN ' . USERS_TABLE . " AS u ON (b.user_id = u.user_id)
WHERE m.season = $season AND m.league = $league AND m.matchday = $matchday AND m.status IN (2,3) WHERE m.season = $season AND m.league = $league AND m.matchday = $matchday AND m.status IN (2,3)
GROUP BY b.user_id GROUP BY u.user_id
ORDER BY points DESC, nobet ASC, username ASC ORDER BY points DESC, nobet ASC, u.username ASC
"; ";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -287,21 +287,21 @@ function save_ranking_matchday($season, $league, $matchday, $cash = false)
{ {
$curr_rank_points = $curr_rank['points']; $curr_rank_points = $curr_rank['points'];
$curr_rank_user = $curr_rank['user_id'] + 2000; $curr_rank_user = $curr_rank['user_id'] + 2000;
$sql = 'UPDATE ' . FOOTB_MATCHES . " $sql = 'UPDATE ' . FOOTB_MATCHES . "
SET goals_home = $curr_rank_points, SET goals_home = $curr_rank_points,
status = $matchday_status status = $matchday_status
WHERE season = $season AND league = $league2 AND matchday = $matchday AND team_id_home = $curr_rank_user"; WHERE season = $season AND league = $league2 AND matchday = $matchday AND team_id_home = $curr_rank_user";
$db->sql_query($sql); $db->sql_query($sql);
$sql = 'UPDATE ' . FOOTB_MATCHES . " $sql = 'UPDATE ' . FOOTB_MATCHES . "
SET goals_guest = $curr_rank_points, SET goals_guest = $curr_rank_points,
status = $matchday_status status = $matchday_status
WHERE season = $season AND league = $league2 AND matchday = $matchday AND team_id_guest = $curr_rank_user"; WHERE season = $season AND league = $league2 AND matchday = $matchday AND team_id_guest = $curr_rank_user";
$db->sql_query($sql); $db->sql_query($sql);
$sql = 'UPDATE ' . FOOTB_MATCHDAYS . " $sql = 'UPDATE ' . FOOTB_MATCHDAYS . "
SET status = $matchday_status SET status = $matchday_status
WHERE season = $season AND league = $league2 AND matchday = $matchday"; WHERE season = $season AND league = $league2 AND matchday = $matchday";
$db->sql_query($sql); $db->sql_query($sql);
} }
} }
if ( sizeof($ranking_ary) == 0 ) if ( sizeof($ranking_ary) == 0 )
{ {
@@ -312,13 +312,13 @@ function save_ranking_matchday($season, $league, $matchday, $cash = false)
$db->sql_query($sql); $db->sql_query($sql);
if ($league < 51) if ($league < 51)
{ {
$sql = 'UPDATE ' . FOOTB_MATCHES . " $sql = 'UPDATE ' . FOOTB_MATCHES . "
SET goals_home = '', SET goals_home = '',
goals_guest = '', goals_guest = '',
status = $matchday_status status = $matchday_status
WHERE season = $season AND league = $league2 AND matchday = $matchday;"; WHERE season = $season AND league = $league2 AND matchday = $matchday;";
$db->sql_query($sql); $db->sql_query($sql);
} }
} }
else else
{ {
@@ -615,13 +615,13 @@ function set_footb_points($points_type, $season, $league, $matchday, $wins, $cas
function _sort_points($value_a, $value_b) function _sort_points($value_a, $value_b)
{ {
if ($value_a['points'] > $value_b['points']) if ($value_a['points'] > $value_b['points'])
{ {
return -1; return -1;
} }
else else
{ {
if ($value_a['points'] == $value_b['points']) if ($value_a['points'] == $value_b['points'])
{ {
if (isset($value_a['nobet'])) if (isset($value_a['nobet']))
{ {
@@ -645,12 +645,12 @@ function _sort_points($value_a, $value_b)
{ {
return 0; return 0;
} }
} }
else else
{ {
return 1; return 1;
} }
} }
} }
@@ -893,7 +893,8 @@ function next_delivery($season, $league)
WHEN 6 THEN '" . $lang_dates['Sat'] . "' WHEN 6 THEN '" . $lang_dates['Sat'] . "'
ELSE 'Error' END, ELSE 'Error' END,
DATE_FORMAT(delivery_date,' %d.%m.%Y %H:%i') DATE_FORMAT(delivery_date,' %d.%m.%Y %H:%i')
) AS deliverytime ) AS deliverytime,
matchday
FROM " . FOOTB_MATCHDAYS . " FROM " . FOOTB_MATCHDAYS . "
WHERE season = $season AND league = $league AND status = 0 WHERE season = $season AND league = $league AND status = 0
ORDER BY matchday ASC ORDER BY matchday ASC
@@ -1054,7 +1055,7 @@ function first_league($season, $complete = true)
{ {
$join_matchday = 'INNER JOIN ' . FOOTB_MATCHDAYS . ' AS m ON (m.season = l.season AND m.league = l.league) '; $join_matchday = 'INNER JOIN ' . FOOTB_MATCHDAYS . ' AS m ON (m.season = l.season AND m.league = l.league) ';
} }
$sql = 'SELECT * $sql = 'SELECT l.*
FROM ' . FOOTB_LEAGUES . ' AS l ' . FROM ' . FOOTB_LEAGUES . ' AS l ' .
$join_matchday . " $join_matchday . "
WHERE l.season = $season WHERE l.season = $season
@@ -1085,13 +1086,13 @@ function current_league($season)
$curr_user = $user->data['user_id']; $curr_user = $user->data['user_id'];
$user_spec = 'AND b.user_id = ' . $curr_user; $user_spec = 'AND b.user_id = ' . $curr_user;
} }
$sql = 'SELECT DISTINCT m.league $sql = 'SELECT DISTINCT m.league, m.match_datetime
FROM ' . FOOTB_MATCHES . ' AS m FROM ' . FOOTB_MATCHES . ' AS m
INNER JOIN ' . FOOTB_BETS . ' AS b ON (b.season = m.season AND b.league = m.league ' . $user_spec . ") INNER JOIN ' . FOOTB_BETS . ' AS b ON (b.season = m.season AND b.league = m.league ' . $user_spec . ")
WHERE m.season = $season WHERE m.season = $season
AND m.league < 51 AND m.league < 51
AND m.status in (0,1,2) AND m.status in (0,1,2)
ORDER BY m.match_datetime ASC ORDER BY m.match_datetime ASC, m.league ASC
LIMIT 1"; LIMIT 1";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -1723,7 +1724,7 @@ function get_order_team_compare($team_ary, $season, $league, $group, $ranks, $ma
IF(goals_home + 0 > goals_guest, 3, IF(goals_home = goals_guest, 1, 0)), IF(goals_home + 0 > goals_guest, 3, IF(goals_home = goals_guest, 1, 0)),
IF(goals_home + 0 < goals_guest, 3, IF(goals_home = goals_guest, 1, 0)) IF(goals_home + 0 < goals_guest, 3, IF(goals_home = goals_guest, 1, 0))
) )
) + IFNULL((SELECT SUM(b.bonuspoints) FROM " . FOOTB_BONUS_DAY . " AS b WHERE b.team_id = t.team_id AND b.season = t.season AND b.league = t.league AND b.matchday <= $matchday),0) ) + IFNULL((SELECT SUM(b.bonuspoints) FROM " . FOOTB_BONUS_DAY . " AS b WHERE b.team_id = t.team_id AND b.season = t.season AND b.league = t.league AND b.matchday <= $matchday),0)
+ IFNULL((SELECT SUM(c.points) FROM " . FOOTB_CORR . " AS c WHERE c.team_id = t.team_id AND c.season = t.season AND c.league = t.league AND c.matchday <= $matchday),0) + IFNULL((SELECT SUM(c.points) FROM " . FOOTB_CORR . " AS c WHERE c.team_id = t.team_id AND c.season = t.season AND c.league = t.league AND c.matchday <= $matchday),0)
- IF(t.team_id = 20 AND t.season = 2011 AND $matchday > 7, 2, 0) AS points, - IF(t.team_id = 20 AND t.season = 2011 AND $matchday > 7, 2, 0) AS points,
SUM(IF(m.team_id_home = t.team_id, goals_home - goals_guest, goals_guest - goals_home)) AS goals_diff, SUM(IF(m.team_id_home = t.team_id, goals_home - goals_guest, goals_guest - goals_home)) AS goals_diff,
@@ -1886,7 +1887,7 @@ function get_team($season, $league, $matchnumber, $field, $formula)
$third_group[$team]= $row['group_id']; $third_group[$team]= $row['group_id'];
} }
} }
} }
} }
// Sort 3. Place on points, diff, goals // Sort 3. Place on points, diff, goals
array_multisort($points3, SORT_DESC, $diff3, SORT_DESC, $goals3, SORT_DESC, $third_team, $third_group); array_multisort($points3, SORT_DESC, $diff3, SORT_DESC, $goals3, SORT_DESC, $third_team, $third_group);
@@ -2156,7 +2157,8 @@ function get_team($season, $league, $matchnumber, $field, $formula)
m.goals_overtime_home, m.goals_overtime_home,
m.goals_overtime_guest, m.goals_overtime_guest,
m.goals_home, m.goals_home,
m.goals_guest m.goals_guest,
m.match_no
FROM ' . FOOTB_MATCHES . ' AS m FROM ' . FOOTB_MATCHES . ' AS m
LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home) LEFT JOIN ' . FOOTB_TEAMS . ' AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home)
LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest) LEFT JOIN ' . FOOTB_TEAMS . " AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest)
@@ -2376,7 +2378,7 @@ function ko_group_next_round($season, $league, $matchday_from, $matchday_to, $ma
LEFT JOIN ' . FOOTB_MATCHES . " AS m ON (m.season = t.season AND m.league = t.league AND (m.team_id_home = t.team_id OR m.team_id_guest = t.team_id) AND m.group_id = t.group_id) LEFT JOIN ' . FOOTB_MATCHES . " AS m ON (m.season = t.season AND m.league = t.league AND (m.team_id_home = t.team_id OR m.team_id_guest = t.team_id) AND m.group_id = t.group_id)
WHERE t.season = $season AND t.league = $league AND m.matchday >= $matchday_from AND m.matchday <= $matchday_to AND m.status IN (3,6) WHERE t.season = $season AND t.league = $league AND m.matchday >= $matchday_from AND m.matchday <= $matchday_to AND m.status IN (3,6)
GROUP BY t.team_id GROUP BY t.team_id
ORDER BY group_id ASC,points DESC, goal_diff DESC, goals DESC ORDER BY t.group_id ASC, points DESC, goal_diff DESC, goals DESC
"; ";
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
@@ -2649,7 +2651,7 @@ function bonuspoints($season, $league, $matchday)
{ {
$z3 = "0"; $z3 = "0";
} }
If ($z1 > 2) If ($z1 > 2)
{ {
$b1 = 6 / $z1; $b1 = 6 / $z1;
@@ -2820,4 +2822,3 @@ function chart($season, $league, $matchday)
$i++; $i++;
} }
} }
?>

View File

@@ -1,115 +1,115 @@
<?php <?php
/** /**
* *
* @package phpBB Extension - Football Football * @package phpBB Extension - Football Football
* @copyright (c) 2016 football (http://football.bplaced.net) * @copyright (c) 2016 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
namespace football\football\includes; namespace football\football\includes;
class version_check class version_check
{ {
/** /**
* @var array version_data * @var array version_data
*/ */
protected $version_data; protected $version_data;
/** /**
* @var \phpbb\config\config * @var \phpbb\config\config
*/ */
protected $config; protected $config;
/** /**
* @var \phpbb\version_helper $version_helper phpBB version helper * @var \phpbb\version_helper $version_helper phpBB version helper
*/ */
protected $version_helper; protected $version_helper;
/** /**
* @var \phpbb\template\twig\twig * @var \phpbb\template\twig\twig
*/ */
protected $template; protected $template;
/** /**
* @var \phpbb\user * @var \phpbb\user
*/ */
protected $user; protected $user;
/** /**
* @var string Current version * @var string Current version
*/ */
protected $current_version; protected $current_version;
/** /**
* Construct a version_check object * Construct a version_check object
* *
* @param array $version_data Version data * @param array $version_data Version data
* @param \phpbb\config\config $config phpBB config * @param \phpbb\config\config $config phpBB config
* @param \phpbb\version_helper $version_helper phpBB version helper * @param \phpbb\version_helper $version_helper phpBB version helper
* @param \phpbb\template\twig\twig $template phpBB template object * @param \phpbb\template\twig\twig $template phpBB template object
* @param \phpbb\user $user phpBB user object * @param \phpbb\user $user phpBB user object
*/ */
public function __construct($version_data, $config, $version_helper, $template, $user) public function __construct($version_data, $config, $version_helper, $template, $user)
{ {
$this->version_data = $version_data; $this->version_data = $version_data;
$this->config = $config; $this->config = $config;
$this->version_helper = $version_helper; $this->version_helper = $version_helper;
$this->template = $template; $this->template = $template;
$this->user = $user; $this->user = $user;
$this->current_version = $this->config[str_replace(' ', '', $this->version_data['version'])]; $this->current_version = $this->config[str_replace(' ', '', $this->version_data['version'])];
} }
/** /**
* Check Extension version and assign template variables for version info if not * Check Extension version and assign template variables for version info if not
* returning current version * returning current version
* *
* @param bool $return_version Yes if current version should be returned * @param bool $return_version Yes if current version should be returned
* @return string Current version if $return_version is set to true * @return string Current version if $return_version is set to true
*/ */
public function check($return_version = false) public function check($return_version = false)
{ {
$allow_url_fopen = (int) @ini_get('allow_url_fopen'); $allow_url_fopen = (int) @ini_get('allow_url_fopen');
if ($allow_url_fopen) if ($allow_url_fopen)
{ {
// Set file location // Set file location
$this->version_helper->set_file_location($this->version_data['file'][0], $this->version_data['file'][1], $this->version_data['file'][2]); $this->version_helper->set_file_location($this->version_data['file'][0], $this->version_data['file'][1], $this->version_data['file'][2]);
// Set current version // Set current version
$this->version_helper->set_current_version($this->current_version); $this->version_helper->set_current_version($this->current_version);
$this->version_helper->force_stability(($this->config['extension_force_unstable'] || !$this->version_helper->is_stable($this->current_version)) ? 'unstable' : null); $this->version_helper->force_stability(($this->config['extension_force_unstable'] || !$this->version_helper->is_stable($this->current_version)) ? 'unstable' : null);
$updates = $this->version_helper->get_suggested_updates(true); $updates = $this->version_helper->get_suggested_updates(true);
// Return version if $return_version is set to true // Return version if $return_version is set to true
if ($return_version) if ($return_version)
{ {
return $this->current_version; return $this->current_version;
} }
$version_up_to_date = empty($updates); $version_up_to_date = empty($updates);
$template_data = array( $template_data = array(
'AUTHOR' => $this->version_data['author'], 'AUTHOR' => $this->version_data['author'],
'CURRENT_VERSION' => $this->current_version, 'CURRENT_VERSION' => $this->current_version,
'UP_TO_DATE' => sprintf((!$version_up_to_date) ? $this->user->lang['NOT_UP_TO_DATE'] : $this->user->lang['UP_TO_DATE'], $this->version_data['title']), 'UP_TO_DATE' => sprintf((!$version_up_to_date) ? $this->user->lang['NOT_UP_TO_DATE'] : $this->user->lang['UP_TO_DATE'], $this->version_data['title']),
'S_UP_TO_DATE' => $version_up_to_date, 'S_UP_TO_DATE' => $version_up_to_date,
'U_AUTHOR' => 'http://www.phpbb.com/community/memberlist.php?mode=viewprofile&un=' . $this->version_data['author'], 'U_AUTHOR' => 'http://www.phpbb.com/community/memberlist.php?mode=viewprofile&un=' . $this->version_data['author'],
'TITLE' => (string) $this->version_data['title'], 'TITLE' => (string) $this->version_data['title'],
'LATEST_VERSION' => $this->current_version, 'LATEST_VERSION' => $this->current_version,
); );
if (!$version_up_to_date) if (!$version_up_to_date)
{ {
$updates = array_shift($updates); $updates = array_shift($updates);
$template_data = array_merge($template_data, array( $template_data = array_merge($template_data, array(
'ANNOUNCEMENT' => (string) $updates['announcement'], 'ANNOUNCEMENT' => (string) $updates['announcement'],
'DOWNLOAD' => (string) $updates['download'], 'DOWNLOAD' => (string) $updates['download'],
'LATEST_VERSION' => $updates['current'], 'LATEST_VERSION' => $updates['current'],
)); ));
} }
$this->template->assign_block_vars('mods', $template_data); $this->template->assign_block_vars('mods', $template_data);
} }
} }
} }

View File

@@ -1,10 +1,10 @@
Hallo {SITENAME}, Hallo {SITENAME},
Folgende Tipper haben eine Erinnerungs-Mail erhalten: Folgende Tipper haben eine Erinnerungs-Mail erhalten:
{REMEMBER_LIST} {REMEMBER_LIST}
Hier geht es zur {SITENAME}: {U_BOARD}. Hier geht es zur {SITENAME}: {U_BOARD}.
{EMAIL_SIG} {EMAIL_SIG}

View File

@@ -1,10 +1,10 @@
Hallo Tipper {USERNAME}, Hallo Tipper {USERNAME},
Du hast bislang noch nicht den {MATCHDAY}. Spieltag getippt. Du hast bislang noch nicht den {MATCHDAY}. Spieltag getippt.
Bitte tipp bis zum {LEAGUE} Abgabetermin {DELIVERY} Uhr. Bitte tipp bis zum {LEAGUE} Abgabetermin {DELIVERY} Uhr.
Hier geht es zur {SITENAME}: {U_BOARD}. Hier geht es zur {SITENAME}: {U_BOARD}.
{EMAIL_SIG} {EMAIL_SIG}

View File

@@ -13,12 +13,12 @@
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE

View File

@@ -528,4 +528,3 @@ Datenquelle erfolgen. Benötigt man innerhalb dieser Zeit trotzdem aktualisierte
Datenquelle zu erzwingen.' Datenquelle zu erzwingen.'
), ),
))); )));
?>

View File

@@ -1,47 +1,47 @@
<?php <?php
/** /**
* *
* info_acp_football_all_bets [Deutsch — Du] * info_acp_football_all_bets [Deutsch — Du]
* *
* @package language * @package language
* @version $Id: info_acp_football_all_bets.php 6 2011-01-09 08:02:37Z football $ * @version $Id: info_acp_football_all_bets.php 6 2011-01-09 08:02:37Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
/** /**
* DO NOT CHANGE * DO NOT CHANGE
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_FOOTBALL_ALL_BETS' => 'Alle Tipps', 'ACP_FOOTBALL_ALL_BETS' => 'Alle Tipps',
'ACP_FOOTBALL_ALL_BETS_MANAGEMENT' => 'Tipprunde-Alle Tipps ansehen', 'ACP_FOOTBALL_ALL_BETS_MANAGEMENT' => 'Tipprunde-Alle Tipps ansehen',
'ACP_FOOTBALL_ALL_BETS_VIEW' => 'Alle Tipps ansehen', 'ACP_FOOTBALL_ALL_BETS_VIEW' => 'Alle Tipps ansehen',
'ACP_FOOTBALL_ALL_BETS_VIEW_EXPLAIN' => 'Hier kannst du alle Tipps der Tipper einsehen.', 'ACP_FOOTBALL_ALL_BETS_VIEW_EXPLAIN' => 'Hier kannst du alle Tipps der Tipper einsehen.',
'SELECT_MATCHDAY' => 'Spieltag wählen', 'SELECT_MATCHDAY' => 'Spieltag wählen',
)); ));
?> ?>

View File

@@ -1,114 +1,114 @@
<?php <?php
/** /**
* *
* info_acp_football_bank [Deutsch — Du] * info_acp_football_bank [Deutsch — Du]
* *
* @package language * @package language
* @version $Id: info_acp_football_bank.php 6 2011-01-09 08:02:46Z football $ * @version $Id: info_acp_football_bank.php 6 2011-01-09 08:02:46Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
/** /**
* DO NOT CHANGE * DO NOT CHANGE
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_FOOTBALL_BANK' => 'Konten', 'ACP_FOOTBALL_BANK' => 'Konten',
'ACP_FOOTBALL_BANK_MANAGE' => 'Konten verwalten', 'ACP_FOOTBALL_BANK_MANAGE' => 'Konten verwalten',
'ACP_FOOTBALL_BANK_MANAGE_EXPLAIN' => 'Hier kannst du alle Tipprunden Konten verwalten. Du kannst Einsätze einziehen, Ein- und Auszahlungen verwalten und kontrollieren.', 'ACP_FOOTBALL_BANK_MANAGE_EXPLAIN' => 'Hier kannst du alle Tipprunden Konten verwalten. Du kannst Einsätze einziehen, Ein- und Auszahlungen verwalten und kontrollieren.',
'ACP_FOOTBALL_BANK_MANAGEMENT' => 'Tipprunde-Konten-Verwaltung', 'ACP_FOOTBALL_BANK_MANAGEMENT' => 'Tipprunde-Konten-Verwaltung',
'BET_DEPOSIT' => 'Einsatz einzahlen', 'BET_DEPOSIT' => 'Einsatz einzahlen',
'BET_DEPOSIT_EXPLAIN' => 'Hier kannst du Einzahlungen der Teilnehmer verbuchen. Bei Verrechnung in Ultimate Points, wird der UP Saldo entsprechend erhöht bzw. ausgeglichen. Ohne Verrechnung werden nur die jeweiligen Protokollsätze zum gewählten Spieltag erfasst.', 'BET_DEPOSIT_EXPLAIN' => 'Hier kannst du Einzahlungen der Teilnehmer verbuchen. Bei Verrechnung in Ultimate Points, wird der UP Saldo entsprechend erhöht bzw. ausgeglichen. Ohne Verrechnung werden nur die jeweiligen Protokollsätze zum gewählten Spieltag erfasst.',
'BOOK' => 'buchen', 'BOOK' => 'buchen',
'BOOKED' => 'Gebucht', 'BOOKED' => 'Gebucht',
'CARRYOVER_NEW_SEASON' => 'Übertrag in die nächste Saison', 'CARRYOVER_NEW_SEASON' => 'Übertrag in die nächste Saison',
'CARRYOVER_OLD_SEASON' => 'Übertrag aus der letzten Saison', 'CARRYOVER_OLD_SEASON' => 'Übertrag aus der letzten Saison',
'CONFIRM_BET' => 'Bist du sicher, dass du bei den gewählten Tippern die Einsätze abbuchen möchtest?', 'CONFIRM_BET' => 'Bist du sicher, dass du bei den gewählten Tippern die Einsätze abbuchen möchtest?',
'CONFIRM_CANCEL_BET' => 'Bist du sicher, dass du bei den gewählten Tippern die Einsätze stornieren möchtest?', 'CONFIRM_CANCEL_BET' => 'Bist du sicher, dass du bei den gewählten Tippern die Einsätze stornieren möchtest?',
'CONFIRM_CANCEL_DEPOSIT' => 'Bist du sicher, dass du bei den gewählten Tippern die Einzahlungen stornieren möchtest?', 'CONFIRM_CANCEL_DEPOSIT' => 'Bist du sicher, dass du bei den gewählten Tippern die Einzahlungen stornieren möchtest?',
'CONFIRM_CANCEL_PAY' => 'Bist du sicher, dass du bei den gewählten Tippern die Auszahlungen stornieren möchtest?', 'CONFIRM_CANCEL_PAY' => 'Bist du sicher, dass du bei den gewählten Tippern die Auszahlungen stornieren möchtest?',
'CONFIRM_CARRYOVER_PAY' => 'Bist du sicher, dass du bei den gewählten Tippern ein Teil der Gewinne in die neue Saison einzahlen möchtest?', 'CONFIRM_CARRYOVER_PAY' => 'Bist du sicher, dass du bei den gewählten Tippern ein Teil der Gewinne in die neue Saison einzahlen möchtest?',
'CONFIRM_DEPOSIT' => 'Bist du sicher, dass du bei den gewählten Tippern die Einzahlungen buchen möchtest?', 'CONFIRM_DEPOSIT' => 'Bist du sicher, dass du bei den gewählten Tippern die Einzahlungen buchen möchtest?',
'CONFIRM_LEAGUE_BET' => 'Bist du sicher, dass du bei den gewählten Ligen die Einsätze abbuchen möchtest?', 'CONFIRM_LEAGUE_BET' => 'Bist du sicher, dass du bei den gewählten Ligen die Einsätze abbuchen möchtest?',
'CONFIRM_LEAGUE_DELETE_WIN' => 'Bist du sicher, dass du bei den gewählten Ligen alle Gewinne löschen möchtest?', 'CONFIRM_LEAGUE_DELETE_WIN' => 'Bist du sicher, dass du bei den gewählten Ligen alle Gewinne löschen möchtest?',
'CONFIRM_LEAGUE_DEPOSIT' => 'Bist du sicher, dass du bei den gewählten Ligen die Einzahlungen buchen möchtest?', 'CONFIRM_LEAGUE_DEPOSIT' => 'Bist du sicher, dass du bei den gewählten Ligen die Einzahlungen buchen möchtest?',
'CONFIRM_LEAGUE_PAY' => 'Bist du sicher, dass du bei den gewählten Ligen die Auszahlungen buchen möchtest?', 'CONFIRM_LEAGUE_PAY' => 'Bist du sicher, dass du bei den gewählten Ligen die Auszahlungen buchen möchtest?',
'CONFIRM_PAY' => 'Bist du sicher, dass du bei den gewählten Tippern die Auszahlungen buchen möchtest?', 'CONFIRM_PAY' => 'Bist du sicher, dass du bei den gewählten Tippern die Auszahlungen buchen möchtest?',
'DEBIT_BET' => 'Einsatz abbuchen', 'DEBIT_BET' => 'Einsatz abbuchen',
'DEBIT_BET_EXPLAIN' => 'Hier kannst du Einsätze der Teilnehmer einfordern oder stornieren. Bei Verrechnung in Ultimate Points, wird der UP Saldo entsprechend belastet.', 'DEBIT_BET_EXPLAIN' => 'Hier kannst du Einsätze der Teilnehmer einfordern oder stornieren. Bei Verrechnung in Ultimate Points, wird der UP Saldo entsprechend belastet.',
'DEPOSITED' => 'Eingezahlt', 'DEPOSITED' => 'Eingezahlt',
'FOOTBALL_BANK_OFF' => 'Die Tipprunden Konten-Verwaltung wurde in den Tipprunden-Funktionalitäten deaktiviert.', 'FOOTBALL_BANK_OFF' => 'Die Tipprunden Konten-Verwaltung wurde in den Tipprunden-Funktionalitäten deaktiviert.',
'LEAGUE_BANK' => 'Konten', 'LEAGUE_BANK' => 'Konten',
'LEAGUE_BANK_EXPLAIN' => 'Dies sind die aktuellen Kontenbuchungen der jeweiligen Ligen. Am Ende der Saison sollten zumindest Einsatz/Gewinn und Ein-/Auszahlungen paarweise identisch sein. Aktionen auf dieser Seite werden für alle Teilnehmer ausgeführt. Einsätze und Einzahlungen werden für den 1. Spieltag, Auszahlung für den aktuellen Spieltag gebucht. Buchungen für einzelne Teilnehmer kannst du vernehmen, indem du auf den entsprechenden Betrag klickst. Mit Klick auf den Liganamen kannst du eine Übersicht als CSV-Datei downloaden.', 'LEAGUE_BANK_EXPLAIN' => 'Dies sind die aktuellen Kontenbuchungen der jeweiligen Ligen. Am Ende der Saison sollten zumindest Einsatz/Gewinn und Ein-/Auszahlungen paarweise identisch sein. Aktionen auf dieser Seite werden für alle Teilnehmer ausgeführt. Einsätze und Einzahlungen werden für den 1. Spieltag, Auszahlung für den aktuellen Spieltag gebucht. Buchungen für einzelne Teilnehmer kannst du vernehmen, indem du auf den entsprechenden Betrag klickst. Mit Klick auf den Liganamen kannst du eine Übersicht als CSV-Datei downloaden.',
'LEAGUE_BET' => '%s Einsatz wurde abgebucht.', 'LEAGUE_BET' => '%s Einsatz wurde abgebucht.',
'LEAGUE_BETS' => '%s Einsätze wurden abgebucht.', 'LEAGUE_BETS' => '%s Einsätze wurden abgebucht.',
'LEAGUE_CANCEL_BET' => '%s Einsatzbuchung wurde storniert.', 'LEAGUE_CANCEL_BET' => '%s Einsatzbuchung wurde storniert.',
'LEAGUE_CANCEL_BETS' => '%s Einsatzbuchungen wurden storniert.', 'LEAGUE_CANCEL_BETS' => '%s Einsatzbuchungen wurden storniert.',
'LEAGUE_CANCEL_DEPOSIT' => '%s Einsatzzahlung wurde storniert.', 'LEAGUE_CANCEL_DEPOSIT' => '%s Einsatzzahlung wurde storniert.',
'LEAGUE_CANCEL_DEPOSITS' => '%s Einsatzzahlungen wurden storniert.', 'LEAGUE_CANCEL_DEPOSITS' => '%s Einsatzzahlungen wurden storniert.',
'LEAGUE_CANCEL_PAY' => '%s Gewinnauszahlung wurde storniert.', 'LEAGUE_CANCEL_PAY' => '%s Gewinnauszahlung wurde storniert.',
'LEAGUE_CANCEL_PAYS' => '%s Gewinnauszahlungen wurden storniert.', 'LEAGUE_CANCEL_PAYS' => '%s Gewinnauszahlungen wurden storniert.',
'LEAGUE_CARRYOVER_PAY' => '%s Gewinnanteil wurde als Einzahlung in die neue Saison übertragen.', 'LEAGUE_CARRYOVER_PAY' => '%s Gewinnanteil wurde als Einzahlung in die neue Saison übertragen.',
'LEAGUE_CARRYOVER_PAYS' => '%s Gewinnanteile wurden als Einzahlung in die neue Saison übertragen.', 'LEAGUE_CARRYOVER_PAYS' => '%s Gewinnanteile wurden als Einzahlung in die neue Saison übertragen.',
'LEAGUE_DELETE_WIN' => '%s Gewinn wurde gelöscht.', 'LEAGUE_DELETE_WIN' => '%s Gewinn wurde gelöscht.',
'LEAGUE_DELETE_WINS' => '%s Gewinne wurden gelöscht.', 'LEAGUE_DELETE_WINS' => '%s Gewinne wurden gelöscht.',
'LEAGUE_DEPOSIT' => '%s Einsatz wurde eingezahlt.', 'LEAGUE_DEPOSIT' => '%s Einsatz wurde eingezahlt.',
'LEAGUE_DEPOSITS' => '%s Einsätze wurden eingezahlt.', 'LEAGUE_DEPOSITS' => '%s Einsätze wurden eingezahlt.',
'LEAGUE_NAME' => 'Liganame', 'LEAGUE_NAME' => 'Liganame',
'LEAGUE_PAY' => '%s Gewinn wurde ausgezahlt.', 'LEAGUE_PAY' => '%s Gewinn wurde ausgezahlt.',
'LEAGUE_PAYS' => '%s Gewinne wurden ausgezahlt.', 'LEAGUE_PAYS' => '%s Gewinne wurden ausgezahlt.',
'MEMBER_BET' => 'Einsätze buchen', 'MEMBER_BET' => 'Einsätze buchen',
'MEMBER_CANCEL_BET' => 'Einsätze stornieren', 'MEMBER_CANCEL_BET' => 'Einsätze stornieren',
'MEMBER_CANCEL_DEPOSITED' => 'Einzahlungen stornieren', 'MEMBER_CANCEL_DEPOSITED' => 'Einzahlungen stornieren',
'MEMBER_CANCEL_PAID' => 'Auszahlungen stornieren', 'MEMBER_CANCEL_PAID' => 'Auszahlungen stornieren',
'MEMBER_CARRYOVER_PAID' => 'Einzahlung in nächste Saison', 'MEMBER_CARRYOVER_PAID' => 'Einzahlung in nächste Saison',
'MEMBER_DELETE_WINS' => 'Gewinne löschen', 'MEMBER_DELETE_WINS' => 'Gewinne löschen',
'MEMBER_DEPOSITED' => 'Einzahlungen buchen', 'MEMBER_DEPOSITED' => 'Einzahlungen buchen',
'MEMBER_PAID' => 'Auszahlungen buchen', 'MEMBER_PAID' => 'Auszahlungen buchen',
'NO_LEAGUE' => 'Keine Liga angegeben.', 'NO_LEAGUE' => 'Keine Liga angegeben.',
'NO_LEAGUES_SELECTED' => 'Es wurde keine Liga gewählt.', 'NO_LEAGUES_SELECTED' => 'Es wurde keine Liga gewählt.',
'NO_MEMBERS_SELECTED' => 'Es wurde kein Mitglied ausgewählt, bzw. das gewählte Mitglied ist nicht bekannt.', 'NO_MEMBERS_SELECTED' => 'Es wurde kein Mitglied ausgewählt, bzw. das gewählte Mitglied ist nicht bekannt.',
'NO_SEASON' => 'Es existiert keine Saison. Bitte zuerst eine Saison erstellen.', 'NO_SEASON' => 'Es existiert keine Saison. Bitte zuerst eine Saison erstellen.',
'NO_VALID_CALL' => 'Unzulässiger Aufruf! Die Aktion wird abgebrochen.', 'NO_VALID_CALL' => 'Unzulässiger Aufruf! Die Aktion wird abgebrochen.',
'PAID' => 'Ausgezahlt', 'PAID' => 'Ausgezahlt',
'PAY_WINS' => 'Gewinne auszahlen', 'PAY_WINS' => 'Gewinne auszahlen',
'PAY_WINS_EXPLAIN' => 'Hier kannst du Gewinne oder Teilgewinne auszahlen oder als Einsatz in die nächste Saison übertragen. Bei Verrechnung in Ultimate Points, wird der UP Saldo entsprechend belastet.', 'PAY_WINS_EXPLAIN' => 'Hier kannst du Gewinne oder Teilgewinne auszahlen oder als Einsatz in die nächste Saison übertragen. Bei Verrechnung in Ultimate Points, wird der UP Saldo entsprechend belastet.',
'SELECT_SEASON' => 'Saison auswählen', 'SELECT_SEASON' => 'Saison auswählen',
'SET_DEPOSITS' => 'Einzahlungen berechnen', 'SET_DEPOSITS' => 'Einzahlungen berechnen',
'WINS' => 'Gewinne', 'WINS' => 'Gewinne',
)); ));
?> ?>

View File

@@ -1,47 +1,47 @@
<?php <?php
/** /**
* *
* info_acp_football_bets [Deutsch — Du] * info_acp_football_bets [Deutsch — Du]
* *
* @package language * @package language
* @version $Id: info_acp_football_bets.php 6 2011-01-09 08:02:37Z football $ * @version $Id: info_acp_football_bets.php 6 2011-01-09 08:02:37Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
/** /**
* DO NOT CHANGE * DO NOT CHANGE
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_FOOTBALL_BETS' => 'Tipps', 'ACP_FOOTBALL_BETS' => 'Tipps',
'ACP_FOOTBALL_BETS_MANAGE' => 'Tipps editieren', 'ACP_FOOTBALL_BETS_MANAGE' => 'Tipps editieren',
'ACP_FOOTBALL_BETS_MANAGE_EXPLAIN' => 'Hier kannst du alle Tipps der Tipper editieren.', 'ACP_FOOTBALL_BETS_MANAGE_EXPLAIN' => 'Hier kannst du alle Tipps der Tipper editieren.',
'ACP_FOOTBALL_BETS_MANAGEMENT' => 'Tipprunde-Tipps editieren', 'ACP_FOOTBALL_BETS_MANAGEMENT' => 'Tipprunde-Tipps editieren',
'SELECT_MATCHDAY' => 'Spieltag wählen', 'SELECT_MATCHDAY' => 'Spieltag wählen',
)); ));
?> ?>

View File

@@ -1,93 +1,93 @@
<?php <?php
/** /**
* *
* info_acp_football_extra [Deutsch — Du] * info_acp_football_extra [Deutsch — Du]
* *
* @package language * @package language
* @version $Id: info_acp_football_extra.php 6 2011-01-09 08:02:37Z football $ * @version $Id: info_acp_football_extra.php 6 2011-01-09 08:02:37Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
/** /**
* DO NOT CHANGE * DO NOT CHANGE
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_FOOTBALL_EXTRA' => 'Sondertipps', 'ACP_FOOTBALL_EXTRA' => 'Sondertipps',
'ACP_FOOTBALL_EXTRA_MANAGE' => 'Sondertipps verwalten', 'ACP_FOOTBALL_EXTRA_MANAGE' => 'Sondertipps verwalten',
'ACP_FOOTBALL_EXTRA_MANAGE_EXPLAIN' => 'Hier kannst du Sondertipps zu Spieltagen einer Liga zuordnen. Du kannst bestehende löschen oder ändern oder einen neuen Sondertipp erstellen, sowie Typ, Wertung, Punkte und den Endzeitpunkt der Sondertipps einstellen.', 'ACP_FOOTBALL_EXTRA_MANAGE_EXPLAIN' => 'Hier kannst du Sondertipps zu Spieltagen einer Liga zuordnen. Du kannst bestehende löschen oder ändern oder einen neuen Sondertipp erstellen, sowie Typ, Wertung, Punkte und den Endzeitpunkt der Sondertipps einstellen.',
'ACP_FOOTBALL_EXTRA_MANAGEMENT' => 'Tipprunde-Sondertipp-Verwaltung', 'ACP_FOOTBALL_EXTRA_MANAGEMENT' => 'Tipprunde-Sondertipp-Verwaltung',
'EVAL_BEFORE_DELIVERY' => 'Der Auswertungs-Spieltag darf nicht vor dem Abgabe-Spieltag liegen.', 'EVAL_BEFORE_DELIVERY' => 'Der Auswertungs-Spieltag darf nicht vor dem Abgabe-Spieltag liegen.',
'EXTRA_ADD' => 'Sondertipp hinzufügen', 'EXTRA_ADD' => 'Sondertipp hinzufügen',
'EXTRA_ADDED' => 'Sondertipp erfolgreich hinzugefügt.', 'EXTRA_ADDED' => 'Sondertipp erfolgreich hinzugefügt.',
'EXTRA_CONFIRM_DELETE' => 'Bist du sicher, dass du den Sondertipp "%1$s" in der %2$s. Liga aus der Saison %3$s mit allen Tipps löschen willst?', 'EXTRA_CONFIRM_DELETE' => 'Bist du sicher, dass du den Sondertipp "%1$s" in der %2$s. Liga aus der Saison %3$s mit allen Tipps löschen willst?',
'EXTRA_CREATE_FAILED' => 'Sondertipp konnte nicht erstellt werden.', 'EXTRA_CREATE_FAILED' => 'Sondertipp konnte nicht erstellt werden.',
'EXTRA_DEF' => 'Bestehende Sondertipps', 'EXTRA_DEF' => 'Bestehende Sondertipps',
'EXTRA_DEF_EXPLAIN' => 'Dies sind Sondertipps, die von dir oder einem anderen Administrator erstellt wurden. Du kannst Sondertippeinstellungen ändern oder Sondertipps löschen.', 'EXTRA_DEF_EXPLAIN' => 'Dies sind Sondertipps, die von dir oder einem anderen Administrator erstellt wurden. Du kannst Sondertippeinstellungen ändern oder Sondertipps löschen.',
'EXTRA_DELETED' => 'Sondertipp gelöscht', 'EXTRA_DELETED' => 'Sondertipp gelöscht',
'EXTRA_DETAILS' => 'Sondertippdaten', 'EXTRA_DETAILS' => 'Sondertippdaten',
'EXTRA_MATCHDAY' => 'Abgabe', 'EXTRA_MATCHDAY' => 'Abgabe',
'EXTRA_MATCHDAY_EVAL' => 'Auswertung', 'EXTRA_MATCHDAY_EVAL' => 'Auswertung',
'EXTRA_MATCHDAY_EVAL_EXPLAIN' => 'Das Ergebnis des Sondertipps wird an diesem Spieltag eingegeben. Bei unterschiedlichen Spieltagen für Abgabe und Ergebnis werden die Punkte der Gesamtwertung zugerechnet, sonst fließen sie in die Spieltagswertung mit ein.', 'EXTRA_MATCHDAY_EVAL_EXPLAIN' => 'Das Ergebnis des Sondertipps wird an diesem Spieltag eingegeben. Bei unterschiedlichen Spieltagen für Abgabe und Ergebnis werden die Punkte der Gesamtwertung zugerechnet, sonst fließen sie in die Spieltagswertung mit ein.',
'EXTRA_MATCHDAY_EXPLAIN' => 'Die Tippabgabe des Sondertipps wird mit dem ersten Abgabetermin dieses Spieltags gesperrt.', 'EXTRA_MATCHDAY_EXPLAIN' => 'Die Tippabgabe des Sondertipps wird mit dem ersten Abgabetermin dieses Spieltags gesperrt.',
'EXTRA_NO' => 'Nummer', 'EXTRA_NO' => 'Nummer',
'EXTRA_NO_DELETE' => 'Du darfst keine Sondertipps löschen. Dies dürfen nur Gründungsmitglieder', 'EXTRA_NO_DELETE' => 'Du darfst keine Sondertipps löschen. Dies dürfen nur Gründungsmitglieder',
'EXTRA_POINTS' => 'Mögl. Punkte', 'EXTRA_POINTS' => 'Mögl. Punkte',
'EXTRA_POINTS_EXPLAIN' => 'Maximal zu erreichende Punkte in Abhängigkeit zum Punktemodus.', 'EXTRA_POINTS_EXPLAIN' => 'Maximal zu erreichende Punkte in Abhängigkeit zum Punktemodus.',
'EXTRA_QUESTION' => 'Sondertipp Frage', 'EXTRA_QUESTION' => 'Sondertipp Frage',
'EXTRA_QUESTION_EXPLAIN' => 'Freier Fragetext. Bitte eine präzise, unmissverständliche Frage zum hinterlegten Fragetyp formulieren.', 'EXTRA_QUESTION_EXPLAIN' => 'Freier Fragetext. Bitte eine präzise, unmissverständliche Frage zum hinterlegten Fragetyp formulieren.',
'EXTRA_QUESTION_TYPE' => 'Frage- bzw. Wertungs-Typ.', 'EXTRA_QUESTION_TYPE' => 'Frage- bzw. Wertungs-Typ.',
'EXTRA_QUESTION_TYPE_EXPLAIN' => '1 = Auswahl eines Teams, Punkte nur bei Übereinstimmung <br />2 = Auswahl eines Teams mehrere Ergebnisse, Punkte bei einem Treffer<br /> 3 = Texteingabe, Punkte bei Übereinstimmung<br />4 = Texteingabe aber mehrere Ergebnisse, Punkte bei einem Treffer<br />5 = Zahl, Punkte abzgl. der Differenz zwischen Tipp und Ergebnis', 'EXTRA_QUESTION_TYPE_EXPLAIN' => '1 = Auswahl eines Teams, Punkte nur bei Übereinstimmung <br />2 = Auswahl eines Teams mehrere Ergebnisse, Punkte bei einem Treffer<br /> 3 = Texteingabe, Punkte bei Übereinstimmung<br />4 = Texteingabe aber mehrere Ergebnisse, Punkte bei einem Treffer<br />5 = Zahl, Punkte abzgl. der Differenz zwischen Tipp und Ergebnis',
'EXTRA_STATUS' => 'Status', 'EXTRA_STATUS' => 'Status',
'EXTRA_STATUS_EXPLAIN' => '0 = offen (Tippabgabe möglich) <br /> 1 = keine Tippabgabe mehr möglich und noch keine Ergebnisse <br /> 2 = vorläufige Ergebnisse liegen vor <br /> 3 = abgeschlossen, endgültige Ergebnisse liegen vor.', 'EXTRA_STATUS_EXPLAIN' => '0 = offen (Tippabgabe möglich) <br /> 1 = keine Tippabgabe mehr möglich und noch keine Ergebnisse <br /> 2 = vorläufige Ergebnisse liegen vor <br /> 3 = abgeschlossen, endgültige Ergebnisse liegen vor.',
'EXTRA_UPDATE_FAILED' => 'Die Sondertippeinstellungen konnten nicht aktualisiert werden.', 'EXTRA_UPDATE_FAILED' => 'Die Sondertippeinstellungen konnten nicht aktualisiert werden.',
'EXTRA_UPDATED' => 'Sondertippeinstellungen erfolgreich aktualisiert.', 'EXTRA_UPDATED' => 'Sondertippeinstellungen erfolgreich aktualisiert.',
'LEAGUE' => 'Liga', 'LEAGUE' => 'Liga',
'MATCHDAY' => 'Spieltag', 'MATCHDAY' => 'Spieltag',
'NO_EXTRA' => 'Der gewählte Sondertipp existiert nicht. Bitte zuerst einen Sondertipp in dieser Liga der Saison erstellen.', 'NO_EXTRA' => 'Der gewählte Sondertipp existiert nicht. Bitte zuerst einen Sondertipp in dieser Liga der Saison erstellen.',
'NO_EXTRA_CREATED' => 'Es wurden bislang keine Sondertipps erstellt.', 'NO_EXTRA_CREATED' => 'Es wurden bislang keine Sondertipps erstellt.',
'NO_LEAGUE' => 'Die gewählte Liga existiert nicht in der Saison %1$s. Bitte zuerst eine Liga in der Saison %1$s erstellen.', 'NO_LEAGUE' => 'Die gewählte Liga existiert nicht in der Saison %1$s. Bitte zuerst eine Liga in der Saison %1$s erstellen.',
'NO_SEASON' => 'Die gewählte Saison existiert nicht. Bitte zuerst eine Saison erstellen.', 'NO_SEASON' => 'Die gewählte Saison existiert nicht. Bitte zuerst eine Saison erstellen.',
'QUESTION_TYPE' => 'Frage-Typ', 'QUESTION_TYPE' => 'Frage-Typ',
'SEASON' => 'Saison', 'SEASON' => 'Saison',
'SELECT_LEAGUE' => 'Liga auswählen', 'SELECT_LEAGUE' => 'Liga auswählen',
'SELECT_MATCHDAY' => 'Wähle einen Spieltag', 'SELECT_MATCHDAY' => 'Wähle einen Spieltag',
'TOO_LARGE_EXTRA_POINTS' => 'Die Punktzahl für den Sondertipp ist zu groß. Erlaubt: 0-99', 'TOO_LARGE_EXTRA_POINTS' => 'Die Punktzahl für den Sondertipp ist zu groß. Erlaubt: 0-99',
'TOO_LARGE_MATCHDAY' => 'Du musst einen Abgabe-Spieltag wählen.', 'TOO_LARGE_MATCHDAY' => 'Du musst einen Abgabe-Spieltag wählen.',
'TOO_LARGE_MATCHDAY_EVAL' => 'Du musst einen Auswertungs-Spieltag wählen.', 'TOO_LARGE_MATCHDAY_EVAL' => 'Du musst einen Auswertungs-Spieltag wählen.',
'TOO_SMALL_EXTRA_POINTS' => 'Die Punktzahl für den Sondertipp ist zu klein. Erlaubt: 0-99', 'TOO_SMALL_EXTRA_POINTS' => 'Die Punktzahl für den Sondertipp ist zu klein. Erlaubt: 0-99',
'TOO_SMALL_MATCHDAY' => 'Du musst einen Abgabe-Spieltag wählen.', 'TOO_SMALL_MATCHDAY' => 'Du musst einen Abgabe-Spieltag wählen.',
'TOO_SMALL_MATCHDAY_EVAL' => 'Du musst einen Auswertungs-Spieltag wählen.', 'TOO_SMALL_MATCHDAY_EVAL' => 'Du musst einen Auswertungs-Spieltag wählen.',
)); ));
?> ?>

View File

@@ -1,70 +1,70 @@
<?php <?php
/** /**
* *
* info_acp_football_ko [Deutsch — Du] * info_acp_football_ko [Deutsch — Du]
* *
* @package language * @package language
* @version $Id: info_acp_football_ko.php 6 2011-01-09 08:02:37Z football $ * @version $Id: info_acp_football_ko.php 6 2011-01-09 08:02:37Z football $
* @copyright (c) 2010 football (http://football.bplaced.net) * @copyright (c) 2010 football (http://football.bplaced.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
/** /**
* DO NOT CHANGE * DO NOT CHANGE
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_FOOTBALL_KO' => 'KO-Runden Gewinner', 'ACP_FOOTBALL_KO' => 'KO-Runden Gewinner',
'ACP_FOOTBALL_KO_MANAGE' => 'KO-Runden Gewinner ermitteln', 'ACP_FOOTBALL_KO_MANAGE' => 'KO-Runden Gewinner ermitteln',
'ACP_FOOTBALL_KO_MANAGE_EXPLAIN' => 'Hier kannst du zu einer KO-Runde die Gewinner anhand der Begegnung(en) oder des Tabellenplatzes ermitteln und für kommende Spieltage freischalten. Bei der Spielplanerstellung werden nur diese Mannschaften für die Spieltage zur Auswahl angeboten. Ebenso ist es möglich Mannschaften anhand des Tabellenplatzes in eine andere KO-Liga zu überführen.', 'ACP_FOOTBALL_KO_MANAGE_EXPLAIN' => 'Hier kannst du zu einer KO-Runde die Gewinner anhand der Begegnung(en) oder des Tabellenplatzes ermitteln und für kommende Spieltage freischalten. Bei der Spielplanerstellung werden nur diese Mannschaften für die Spieltage zur Auswahl angeboten. Ebenso ist es möglich Mannschaften anhand des Tabellenplatzes in eine andere KO-Liga zu überführen.',
'ACP_FOOTBALL_KO_MANAGEMENT' => 'Tipprunde-KO-Runden abschliessen', 'ACP_FOOTBALL_KO_MANAGEMENT' => 'Tipprunde-KO-Runden abschliessen',
'CHOOSE_LEAGUE' => 'Liga wählen', 'CHOOSE_LEAGUE' => 'Liga wählen',
'ERROR_FROM_TO' => 'Fehler bei der Spieltagswahl. "Von" darf nicht nach "bis" liegen.', 'ERROR_FROM_TO' => 'Fehler bei der Spieltagswahl. "Von" darf nicht nach "bis" liegen.',
'ERROR_TARGET' => 'Fehler bei der Spieltagswahl. Der Ziel-Spieltag liegt nicht nach den Spieltagen zur Ermittlung.', 'ERROR_TARGET' => 'Fehler bei der Spieltagswahl. Der Ziel-Spieltag liegt nicht nach den Spieltagen zur Ermittlung.',
'GROUP_RANK' => 'Qualifiziert bis Tabellenplatz', 'GROUP_RANK' => 'Qualifiziert bis Tabellenplatz',
'GROUP_RANK_EXPLAIN' => 'Alle Mannschaften bis zu diesem Tabellenplatz qualifizieren sich.', 'GROUP_RANK_EXPLAIN' => 'Alle Mannschaften bis zu diesem Tabellenplatz qualifizieren sich.',
'KO_GROUP' => 'Qualifikation anhand des Tabellenplatzes', 'KO_GROUP' => 'Qualifikation anhand des Tabellenplatzes',
'KO_MATCHDAYS' => 'Spieltage zur Ermittlung wählen', 'KO_MATCHDAYS' => 'Spieltage zur Ermittlung wählen',
'KO_MOVED' => 'Folgende Teams wurden in eine andere Liga kopiert', 'KO_MOVED' => 'Folgende Teams wurden in eine andere Liga kopiert',
'KO_NEXT' => 'Folgende Teams haben die nächste Runde erreicht', 'KO_NEXT' => 'Folgende Teams haben die nächste Runde erreicht',
'KO_NEXT_CHECK' => 'Bitte die Teams prüfen, da bei Punktgleichheit der direkte Vergleich zählen kann, hier aber nicht berücksichtigt wird. ', 'KO_NEXT_CHECK' => 'Bitte die Teams prüfen, da bei Punktgleichheit der direkte Vergleich zählen kann, hier aber nicht berücksichtigt wird. ',
'MANAGE_GROUP' => 'Ermittlung anhand des Tabellenplatzes bei Gruppenpielen', 'MANAGE_GROUP' => 'Ermittlung anhand des Tabellenplatzes bei Gruppenpielen',
'MATCHDAY_NEW' => 'Die Mannschaften qualifizieren sich bis Spieltag', 'MATCHDAY_NEW' => 'Die Mannschaften qualifizieren sich bis Spieltag',
'MATCHDAY_TARGET' => 'Ziel-Spieltag wählen', 'MATCHDAY_TARGET' => 'Ziel-Spieltag wählen',
'MOVE_LEAGUE' => 'in Liga', 'MOVE_LEAGUE' => 'in Liga',
'MOVE_RANK' => 'Transfer des Tabellenplatzes', 'MOVE_RANK' => 'Transfer des Tabellenplatzes',
'MOVE_RANK_EXPLAIN' => 'Die Mannschaften auf diesem Tabellenplatz werden in die hinterlegte Liga kopiert und sind bis zum angegeben Spieltag qualifiziert.', 'MOVE_RANK_EXPLAIN' => 'Die Mannschaften auf diesem Tabellenplatz werden in die hinterlegte Liga kopiert und sind bis zum angegeben Spieltag qualifiziert.',
'NO_KO_NEXT' => 'Es wurde kein Team in die nächste Runde gesetzt, da noch nicht alle Spiele gespielt sind!', 'NO_KO_NEXT' => 'Es wurde kein Team in die nächste Runde gesetzt, da noch nicht alle Spiele gespielt sind!',
'PREDICTION_LEAGUE' => 'Tipprunde', 'PREDICTION_LEAGUE' => 'Tipprunde',
)); ));
?> ?>

Some files were not shown because too many files have changed in this diff Show More