/*****************************************************************************************************************
**************************************************General*********************************************************
*****************************************************************************************************************/
var nIntervId;
var nIntervAlert;
function isNumberKey(evt){
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
function mainLoadingOn(){
//console.log('Loading ON');
$('#mainLoading').css("z-index", "99");
$("#mainLoading").css("display", "block");
}
function mainLoadingOff(){
//console.log('Loading OFF');
$('#mainLoading').css("z-index", "-1");
$("#mainLoading").css("display", "none");
}
var urlTarget = "";
function closeDiv(){
$("#Avisos").css("display", "none");
}
function checkSessionExpire(){
//console.log('checkSessionExpire');
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/sessionExpiredCheck.php',
success: function (res) {
if (res.status === '0') {
clearInterval(nIntervId);
alert(res.message.replace("\\n", "\n"));
loadMenu();
showLogin();
}
if (res.status === '1') {
var d = new Date();
var n = d.toString();
//console.log('Valid Session, Time ="' + n + '", ' + res.message);
}
if (res.status === '2') {
//console.log('No session');
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
**************************************************General*********************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
***********************************************TOP Components*****************************************************
*****************************************************************************************************************/
function loadTournament(Season){
//console.log('loadTournament Season = ' + Season);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/changeTournament.php',
data: {Season: Season},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#categorysel").html(res.dataCategories);
$("#teamLogos").html(res.dataLogos);
loadCategory(Season, res.category);
loadTournamentReloadList(Season);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadTournamentReloadList(Season){
//console.log('loadTournamentReloadList Season = ' + Season);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/changeTournamentReloadList.php',
data: {Season: Season},
success: function (res) {
mainLoadingOff()
$("#seasonsel").html(res.dataSeason);
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadCategory(Season, Category){
//console.log('loadCategory Season = ' + Season + ', Category = ' + Category);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/changeCategory.php',
data: {Season: Season, Category: Category},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#teamLogos").html(res.dataLogos);
$("#menuteams").html(res.menulogos);
loadWeeks();
loadCategoryReloadList(Season, Category)
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadCategoryReloadList(Season, Category){
//console.log('loadCategoryReloadList Season = ' + Season + ', Category = ' + Category);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/changeCategoryReloadList.php',
data: {Season: Season, Category: Category},
success: function (res) {
mainLoadingOff()
$("#categorysel").html(res.dataCategories);
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadLanguage(language, url){
//console.log('loadLanguage language = ' + language);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/changeLanguage.php',
data: {language: language},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
window.location.href=url;
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadMenu(){
//console.log('loadMenu');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/reloadMenu.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#sidenav-collapse-main").html(res.dataMenu);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function reloadNotifications(){
//console.log('loadNotifications');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/reloadNotifications.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
if(res.totAlert > 0){
$("#notificationssec").css('display', 'block');
$("#notificationssec").html(res.dataAlert);
}else{
$("#notificationssec").css('display', 'none');
$("#notificationssec").html('');
}
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
***********************************************TOP Components*****************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
*************************************************Load Weeks*******************************************************
*****************************************************************************************************************/
function loadWeeks(){
//console.log('loadWeeks');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/changeWeeks.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataWeeks);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadWeek(Week){
//console.log('loadWeek week = ' + Week);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/changeWeek.php',
data: {Week: Week},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#weekContent").html(res.dataWeek);
$("#weekTabContent").html(res.dataWeekTab);
loadWeekReloadList(Week);
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadWeekReloadList(Week){
//console.log('loadWeekReloadList week = ' + Week);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/changeWeeksReloadWeekSelector.php',
data: {Week: Week},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#weekselectorsection").html(res.dataWeeks);
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
*************************************************Load Weeks*******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
**********************************************Login/Loogout*******************************************************
*****************************************************************************************************************/
function showLogin(){
//console.log('showLogin');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Top/showLogin.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataLogin);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function showRegCode(){
//console.log('showRegCode');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Login/showRegCode.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataBrowserReg);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function submitRegCode(code, message){
//console.log('showRegCode');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Login/confirmRegCode.php',
data: {code: code},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(message);
showLogin();
}else{
$('#errorLoginL').html(res.dataError)
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function login(user, password, CSRFtoken){
//console.log('login user = ' + user + ', password = ' + password + ', CSRFtoken = ' + CSRFtoken);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Login/login.php',
data: {username: user, password: password, CSRFtoken: CSRFtoken},
success: function (res) {
mainLoadingOff()
if (res.status == '0') {
$("#errorLoginL").html(res.dataError);
}
if (res.status == '1') {
nIntervId = setInterval(checkSessionExpire, 60000);
loadMenu();
loadWeeks();
}
},
error: function(jqxhr, status, exception) {
console.log('Status: ' + status);
console.log('Exception: ' + exception);
console.log('jqxhr: ' + jqxhr);
}
});
}
function logout(){
//console.log('logout');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Login/logout.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
clearInterval(nIntervId);
loadMenu();
loadWeeks();
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function showBrowserRegister(){
//console.log('showBrowserRegister');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Login/showBrowserReg.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataBrowserReg);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function browserRegister(email){
//console.log('browserRegister');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Login/browserReg.php',
data: {email: email},
success: function (res) {
mainLoadingOff()
if (res.status == '0') {
$("#errorLoginL").html(res.dataError);
}
if (res.status == '1') {
showRegCode();
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
**********************************************Login/Loogout*******************************************************
*****************************************************************************************************************/
function onChangeWeek(Week){
loadWeek(Week);
}
function loadTeam(team,season){
//console.log('loadTeam team = ' + team + ', season = ' + season);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/changeTeam.php',
data: {team: team, season:season},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataTeam);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function changeTeamTab(id){
var currentAttrValue = id;
// Show/Hide Tabs
jQuery(currentAttrValue).siblings().slideUp(800);
jQuery(currentAttrValue).delay(800).slideDown(800);
// Change/remove current tab to active
$(id+'li').addClass('active').siblings().removeClass('active');
}
function changeStatusTab(id){
//console.log('changeStatusTab id = ' + id);
var currentAttrValue = id;
// Show/Hide Tabs
jQuery(currentAttrValue).siblings().slideUp(800);
jQuery(currentAttrValue).delay(800).slideDown(800);
// Change/remove current tab to active
$(id+'li').addClass('active').siblings().removeClass('active');
if(id == '#jugadores'){
setTimeout(() => {
var element = document.getElementById('teamplayersl');
var elementHeigth = element.getElementsByClassName('active')[0].offsetHeigth + 'px';
var elementWidth = element.getElementsByClassName('active')[0].offsetWidth + 'px';
element.getElementsByClassName('moving-tab')[0].style.height = elementHeigth;
element.getElementsByClassName('moving-tab')[0].style.width = elementWidth;
}, 1000);
}
}
function changeTeamRosterTab(id){
var currentAttrValue = id;
// Show/Hide Tabs
jQuery(currentAttrValue).siblings().slideUp(800);
jQuery(currentAttrValue).delay(800).slideDown(800);
// Change/remove current tab to active
$(id+'li').addClass('active').siblings().removeClass('active');
}
function fixListSchedule(id){
//console.log("fixListSchedule() => " + id);
var index = 1;
$('#'+id+'').find('.tWrap__body').find('thead').find('tr:first').find('th').each(function(){
$('#'+id+' .tWrap__head').find('thead').find('tr:first').find('th:nth-child('+index+')').css( "width" ,$(this).get(0).getBoundingClientRect().width + "px");
index = index +1;
});
var index = 1;
$('#'+id+'').find('.tWrap__body').find('thead').find('tr:nth-child(2)').find('th').each(function(){
$('#'+id+' .tWrap__head').find('thead').find('tr:nth-child(2)').find('th:nth-child('+index+')').css( "width" ,$(this).get(0).getBoundingClientRect().width + "px");
index = index +1;
});
index = 1;
$('#'+id+'').find('.tWrap__body').find('tbody').find('tr:nth-child(1)').find('td').each(function(){
$(this).css( "width" , $('#'+id+' .tWrap__body').find('tbody').find('tr').find('td:nth-child('+index+')').get(0).getBoundingClientRect().width + "px");
index = index +1;
});
$('#'+id+'').find('.tWrap__body').find('thead').toggle();
$('#'+id+'').find('.tWrap__head').find('tbody').toggle();
}
function fixListScheduleWeek(id){
//console.log("fixListSchedule() => " + id);
var index = 1;
$('#'+id+'').find('.tWrap__body').find('thead').find('tr:first').find('th').each(function(){
$('#'+id+' .tWrap__head').find('thead').find('tr:first').find('th:nth-child('+index+')').css( "width" ,$(this).get(0).getBoundingClientRect().width + "px");
index = index +1;
});
$('#'+id+'').find('.tWrap__body').find('thead').toggle();
}
function fixList(id){
//console.log("fixList() => " + id);
var index = 1;
$('#'+id+'').find('.tWrap__body').find('thead').find('tr').find('th').each(function(){
$('#'+id+' .tWrap__head').find('thead').find('tr').find('th:nth-child('+index+')').css( "width" ,$(this).get(0).getBoundingClientRect().width + "px");
//console.log($(this)[0].getBoundingClientRect().width + ' vs '+ $('.tWrap__head').find('thead').find('tr').find('th:nth-child('+index+')')[0].getBoundingClientRect().width);
index = index +1;
});
$('#'+id+'').find('.tWrap__body').find('thead').toggle();
index = 1;
$('#'+id+'').find('.tWrap__head').find('thead').find('tr').find('th').each(function(){
$('#'+id+' .tWrap__body').find('tbody').find('tr').find('td:nth-child('+index+')').css( "width" ,$(this).get(0).getBoundingClientRect().width + "px");
//console.log($(this)[0].getBoundingClientRect().width + ' vs '+ $('.tWrap__head').find('thead').find('tr').find('th:nth-child('+index+')')[0].getBoundingClientRect().width);
index = index +1;
});
}
function previewPlayerShow(playerID){
//console.log('previewPlayerShow playerID = ' + playerID + ', season = ' + season);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/team-PlayersPlayerPreview.php',
data: {playerID: playerID},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#jugador").css("display", "grid");
$("#teamPlayerPreview").html(res.dataTeamPlayerPreview);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function previewPlayerHide(){
$("#jugador").css("display", "none");
}
function loadAlert(){
//console.log('loadAlert');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Alert/loadAlert.php',
data: {playerID: playerID},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#jugador").css("display", "block");
$("#teamPlayerPreview").html(res.dataTeamPlayerPreview);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function abrirFicha(id, week, game, gamedesc, lgoals, vgoals){
//console.log('abrirFicha');
var attr = $('#'+id).attr('style');
$('.juego').css('display', 'none');
$('#expandir'+id).attr('src', './imagenes/expandir.png');
$('.expandirButton').attr('src', './imagenes/expandir.png');
// For some browsers, `attr` is undefined; for others,
// `attr` is false. Check for both.
if (typeof attr == typeof undefined) {
$('#'+id).css('display', 'none');
$('#expandir'+id).attr('src', './imagenes/expandir.png');
$("#content" + id).html('');
}else{
$('#'+id).removeAttr('style');
$('#expandir'+id).attr('src', './imagenes/colapsar.png');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/week-ScheduleScoresGameDetail.php',
data: {week: week, game: game, gamedesc: gamedesc, lgoals: lgoals, vgoals: vgoals},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#content" + id).html(res.dataWeekGameDetail);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
}
function abrirFichaS(id, week, game, gamedesc, lgoals, vgoals){
//console.log('abrirFicha');
var attr = $('#'+id + 'S').attr('style');
$('.juegoS').css('display', 'none');
$('#expandir'+id+'S').attr('src', './imagenes/expandir.png');
$('.expandirButtonS').attr('src', './imagenes/expandir.png');
// For some browsers, `attr` is undefined; for others,
// `attr` is false. Check for both.
if (typeof attr == typeof undefined) {
$('#'+id+'S').css('display', 'none');
$('#expandir'+id+'S').attr('src', './imagenes/expandir.png');
$("#content" + id+'S').html('');
}else{
$('#'+id+'S').removeAttr('style');
$('#expandir'+id+'S').attr('src', './imagenes/colapsar.png');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Content/week-ScheduleScoresGameDetailS.php',
data: {week: week, game: game, gamedesc: gamedesc, lgoals: lgoals, vgoals: vgoals},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#content" + id + 'S').html(res.dataWeekGameDetail);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
}
/*****************************************************************************************************************
********************************************User MAnagement*******************************************************
*****************************************************************************************************************/
function userManagementShow(){
//console.log('loadUsersAdmin');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementLoadImage(id, idl, logo){
var index = document.getElementById(id).selectedIndex;
var optionsl = document.getElementById(idl).options;
document.getElementById(logo).src = "imagenes/"+optionsl[index].text+".png";
}
function userManagementLimpiarCreateUser(image){
document.getElementById("equipo").selectedIndex = 0;
document.getElementById("logoE").src = "imagenes/" + image + ".png";
document.getElementById("error").innerHTML = "";
document.getElementById("nombre").disabled = false;
document.getElementById("apellidop").disabled = false;
document.getElementById("apellidom").disabled = false;
document.getElementById("telefono").disabled = false;
document.getElementById("email").disabled = false;
document.getElementById("equipo").disabled = false;
document.getElementById("usuario").disabled = false;
document.getElementById("password_id").disabled = false;
document.getElementById("register_email_errorloc").innerHTML = "";
document.getElementById("register_nombre_errorloc").innerHTML = "";
document.getElementById("register_apellidop_errorloc").innerHTML = "";
document.getElementById("register_apellidom_errorloc").innerHTML = "";
document.getElementById("register_telefono_errorloc").innerHTML = "";
document.getElementById("nombre").value = "";
document.getElementById("apellidop").value = "";
document.getElementById("apellidom").value = "";
document.getElementById("telefono").value = "";
document.getElementById("email").value = "";
document.getElementById("usuario").value = "";
document.getElementById("password_id").value = "";
$("#register_errorloc").html("");
$('#userManagementCreate').toggle();
$('#userManagementList').toggle();
}
function userManagementLimpiarEditUser(){
$("#userManagementEdit").html("");
$('#userManagementEdit').toggle();
$('#userManagementList').toggle();
}
function userManagementCreateUser(name, lastname, lastname2, phone, email, team, user, password, salt){
//console.log('userManagementCreateUser name = ' + name + ', lastname = ' + lastname + ', lastname2 = ' + lastname2 + ', phone = ' + phone + ', email = ' + email + ', team = ' + team + ', user = ' + user + ', password = ' + password + ', salt = ' + salt);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementCreateSave.php',
data: {nombre: name, apellidop: lastname, apellidom: lastname2, telefono: phone, email: email, equipo: team, username: user, password: password, salt: salt},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataUser);
userManagementShow();
}
if (res.status === '0') {
$("#register_errorloc").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementDeleteUser(id){
//console.log('userManagementDeleteUser id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementDelete.php',
data: {id: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
//$("#register_errorloc").html(res.dataUser);
alert(res.dataUser);
userManagementShow();
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementLimpiarCreateUser(){
$("#userManagementCreate").css('display', 'none');
$("#userManagementList").css('display', 'block');
$("#userManagementCreate").html('');
}
function userManagementShowAdd(){
//console.log('userManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#userManagementCreate").css('display', 'block');
$("#userManagementList").css('display', 'none');
$("#userManagementCreate").html(res.dataUserAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementShowEdit(id){
//console.log('userManagementShowEdit id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementEdit.php',
data: {id: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#userManagementEdit").html(res.dataUser);
$('#userManagementEdit').toggle();
$('#userManagementList').toggle();
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementEditUser(userid, name, lastname, lastname2, phone, email, team, active, username){
//console.log('userManagementEditUser name = ' + name + ', lastname = ' + lastname + ', lastname2 = ' + lastname2 + ', phone = ' + phone + ', team = ' + team + ', active = ' + active);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementEditSave.php',
data: {userid: userid, nombre: name, apellidop: lastname, apellidom: lastname2, telefono: phone, email: email, equipo: team, active: active, username: username},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataUser);
userManagementShow();
}
if (res.status === '0') {
$("#register_errorloca").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementShowResetPassword(){
//console.log('userManagementShowResetPAssword');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementResetPassword.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementShowResetPasswordEnterConfirmCode(email){
//console.log('userManagementShowResetPasswordEnterConfirmCode');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementResetPasswordEnterConfirmCode.php',
data: {email: email},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataUser);
}else{
$("#resetreq_email_errorlocels").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementResetPasswordEnterConfirmCodeSend(code, email){
//console.log('userManagementResetPasswordEnterConfirmCodeSend');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementResetPasswordShowChangePassword.php',
data: {code: code, email: email},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataUser);
}else{
$("#register_code_error_reset_pwd").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function userManagementResetPasswordChangePassword(code, password, salt){
//console.log('userManagementResetPasswordEnterConfirmCodeSend code = ' + code + ', password = ' + password + ', salt = ' + salt);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Login/userManagementResetPasswordChangePassword.php',
data: {code: code, password: password, salt: salt},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataUser);
showLogin();
}else{
$("#register_code_error_reset_pwd").html(res.dataUser);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
********************************************User MAnagement*******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
*****************************************Player Management Admin**************************************************
*****************************************************************************************************************/
function playersManagementAdminCategoryShow(){
//console.log('playersManagementAdminCategoryShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementChangeCategories.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataCategory);
playersManagementAdminCategoryTeamShow(res.category);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminCategoryTeamShow(Category){
//console.log('playersManagementAdminCategoryTeamShow Category = ' + Category);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementChangeTeams.php',
data: {Category: Category},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
playersManagementAdminCategoryTeamShowReloadList(Category, res.team);
playersManagementAdminShow(Category, res.team);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminCategoryTeamShowReloadList(Category, Team){
//console.log('playersManagementAdminCategoryTeamShowReloadList Category = ' + Category);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementChangeCategoriesReloadList.php',
data: {Category: Category},
success: function (res) {
mainLoadingOff()
$("#playerAdminContentCategoryList").html(res.dataCategories);
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminShow(Category, Team){
//console.log('playersManagementAdminShow Category = ' + Category + ', Team = ' + Team);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagement.php',
data: {Team: Team},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#teamContent").html(res.dataPlayer);
playersManagementAdminShowReloadList(Category, Team);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminShowReloadList(Category, Team){
//console.log('playersManagementAdminShowReloadList Team = ' + Team);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementChangeTeamsReloadList.php',
data: {Category: Category, Team: Team},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#playerAdminContentTeamList").html(res.dataCategories);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function disableButton(btn){
document.getElementsByName(btn).disabled = true;
}
function fireEvent(element,event) {
if (document.createEvent) {
return !element.click();
} else {
// dispatch for IE
var evt = document.createEventObject();
return element.fireEvent('on'+event,evt)
}
};
function playerManagementLoadImage(id, logo){
document.getElementById(logo).src = "imagenes/"+$('#'+id).val().split(",")[1]+".png";
}
function playersManagementAdminShowCreate(Category, Team){
//console.log('playersManagementAdminShowCreate');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementCreate.php',
data: {Category: Category, Team: Team},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#playersManagementCreate").toggle();
$("#playersManagementList").toggle();
$("#playersManagementCreate").html(res.dataPlayerAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminCreatePlayer(name, lastname, lastname2, nickname, birthdate, playernumber, phone, sex, email, id, comments, valid, status, team, picture, idf, idb, signature, scat, steam){
//console.log('playersManagementAdminCreatePlayer name = ' + name + ', lastname = ' + lastname + ', lastname2 = ' + lastname2 + ', nickname = ' + nickname + ', birthdate = ' + birthdate + ', playernumber = ' + playernumber + ', phone = ' + phone + ', sex = ' + sex + ', email = ' + email + ', id = ' + id + ', comments = ' + comments + ', valid = ' + valid + ', status = ' + status + ', team = ' + team + ', picture = ' + picture + ', idf = ' + idf + ', idb = ' + idb + ', signature = ' + signature);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementCreateSave.php',
data: {name: name, lastname: lastname, lastname2: lastname2, nickname: nickname, birthdate: birthdate, playernumber: playernumber, phone: phone, sex: sex, email: email, id: id, comments: comments, valid: valid, status: status, team: team, picture: picture, idf: idf, idb: idb, signature: signature},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataPlayerMessage);
playersManagementAdminShow(scat, steam);
}else{
alert(res.dataPlayerMessage);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminShowEdit(player){
//console.log('playersManagementAdminShowEdit player = ' + player);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementEdit.php',
data: {player: player},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#playersManagementEdit").toggle();
$("#playersManagementList").toggle();
$("#playersManagementEdit").html(res.dataPlayerEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminEditPlayer(playerid, name, lastname, lastname2, nickname, birthdate, playernumber, phone, sex, email, id, comments, valid, status, team, picture, idf, idb, signature, scat, steam){
//console.log('playersManagementAdminEditPlayer playerid = ' + playerid + ', name = ' + name + ', lastname = ' + lastname + ', lastname2 = ' + lastname2 + ', nickname = ' + nickname + ', birthdate = ' + birthdate + ', playernumber = ' + playernumber + ', phone = ' + phone + ', sex = ' + sex + ', email = ' + email + ', id = ' + id + ', comments = ' + comments + ', valid = ' + valid + ', status = ' + status + ', team = ' + team + ', picture = ' + picture + ', idf = ' + idf + ', idb = ' + idb + ', signature = ' + signature);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementEditSave.php',
data: {playerid: playerid, name: name, lastname: lastname, lastname2: lastname2, nickname: nickname, birthdate: birthdate, playernumber: playernumber, phone: phone, sex: sex, email: email, id: id, comments: comments, valid: valid, status: status, team: team, picture: picture, idf: idf, idb: idb, signature: signature},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataPlayerMessage);
playersManagementAdminShow(scat, steam);
}else{
alert(res.dataPlayerMessage);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementAdminShowPrintList(){
//console.log('playersManagementAdminShowPrintList player = ' + player);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementGeneratePrintListShow.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataPrintList);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
*****************************************Player Management Admin**************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
*****************************************Player Management Team***************************************************
*****************************************************************************************************************/
function playersManagementTeamShow(Team){
//console.log('playersManagementTeamShow Team = ' + Team);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Team/playersManagement.php',
data: {Team: Team},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataPlayer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementTeamShowCreate(Team){
//console.log('playersManagementTeamShowCreate');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Team/playersManagementCreate.php',
data: {Team: Team},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#playersManagementCreate").toggle();
$("#playersManagementList").toggle();
$("#playersManagementCreate").html(res.dataPlayerAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementTeamCreatePlayer(name, lastname, lastname2, nickname, birthdate, playernumber, phone, sex, email, id, comments, valid, status, team, picture, idf, idb, signature, srcteam){
//console.log('playersManagementTeamCreatePlayer name = ' + name + ', lastname = ' + lastname + ', lastname2 = ' + lastname2 + ', nickname = ' + nickname + ', birthdate = ' + birthdate + ', playernumber = ' + playernumber + ', phone = ' + phone + ', sex = ' + sex + ', email = ' + email + ', id = ' + id + ', comments = ' + comments + ', valid = ' + valid + ', status = ' + status + ', team = ' + team + ', picture = ' + picture + ', idf = ' + idf + ', idb = ' + idb + ', signature = ' + signature);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Admin/playersManagementCreateSave.php',
data: {name: name, lastname: lastname, lastname2: lastname2, nickname: nickname, birthdate: birthdate, playernumber: playernumber, phone: phone, sex: sex, email: email, id: id, comments: comments, valid: valid, status: status, team: team, picture: picture, idf: idf, idb: idb, signature: signature},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataPlayerMessage);
playersManagementTeamShow(srcteam);
}else{
alert(res.dataPlayerMessage);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementTeamShowEdit(player){
//console.log('playersManagementTeamShowEdit player = ' + player);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Team/playersManagementEdit.php',
data: {player: player},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#playersManagementEdit").toggle();
$("#playersManagementList").toggle();
$("#playersManagementEdit").html(res.dataPlayerEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function playersManagementTeamEditPlayer(playerid, name, lastname, lastname2, nickname, birthdate, playernumber, phone, sex, email, id, comments, valid, status, team, picture, idf, idb, signature, steam){
//console.log('playersManagementTeamEditPlayer playerid = ' + playerid + ', name = ' + name + ', lastname = ' + lastname + ', lastname2 = ' + lastname2 + ', nickname = ' + nickname + ', birthdate = ' + birthdate + ', playernumber = ' + playernumber + ', phone = ' + phone + ', sex = ' + sex + ', email = ' + email + ', id = ' + id + ', comments = ' + comments + ', valid = ' + valid + ', status = ' + status + ', team = ' + team + ', picture = ' + picture + ', idf = ' + idf + ', idb = ' + idb + ', signature = ' + signature);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Players/Team/playersManagementEditSave.php',
data: {playerid: playerid, name: name, lastname: lastname, lastname2: lastname2, nickname: nickname, birthdate: birthdate, playernumber: playernumber, phone: phone, sex: sex, email: email, id: id, comments: comments, valid: valid, status: status, team: team, picture: picture, idf: idf, idb: idb, signature: signature},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataPlayerMessage);
playersManagementTeamShow(steam);
}else{
alert(res.dataPlayerMessage);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function readURL(input, foto) {
var fd = new FormData();
var files = $('#myFoto')[0].files;
fd.append('myFoto',files[0]);
$("#previewMyFoto").html('');
$("#previewMyFoto").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadPicture.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#foto').src('');
$('#previewMyFoto').html(data.alert);
}
if(data.status === '1'){
$('#previewMyFoto').html(data.alert);
$('#myFotoFileName').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + foto)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + foto).show();
}
}
function readURLE(input, fotoE) {
var fd = new FormData();
var files = $('#myFotoE')[0].files;
fd.append('myFotoE',files[0]);
$("#previewMyFotoE").html('');
$("#previewMyFotoE").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadPictureE.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#fotoE').src('');
$('#previewMyFotoE').html(data.alert);
}
if(data.status === '1'){
$('#previewMyFotoE').html(data.alert);
$('#myFotoFileNameE').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + fotoE)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + fotoE).show();
}
}
function readIDURL11(input, identificacion) {
var fd = new FormData();
var files = $('#myID11')[0].files;
fd.append('myID11',files[0]);
$("#previewMyID11").html('');
$("#previewMyID11").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadIDF.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#identificacion11').src('');
$('#previewMyID11').html(data.alert);
}
if(data.status === '1'){
$('#previewMyID11').html(data.alert);
$('#myID11FileName').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + identificacion)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + identificacion).show();
}
}
function readIDURL11E(input, identificacion) {
var fd = new FormData();
var files = $('#myID11E')[0].files;
fd.append('myID11E',files[0]);
$("#previewMyID11E").html('');
$("#previewMyID11E").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadIDFE.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#identificacion11E').src('');
$('#previewMyID11E').html(data.alert);
}
if(data.status === '1'){
$('#previewMyID11E').html(data.alert);
$('#myID11FileNameE').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + identificacion)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + identificacion).show();
}
}
function readIDURL12(input, identificacion) {
var fd = new FormData();
var files = $('#myID12')[0].files;
fd.append('myID12',files[0]);
$("#previewMyID12").html('');
$("#previewMyID12").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadIDB.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#identificacion12').src('');
$('#previewMyID12').html(data.alert);
}
if(data.status === '1'){
$('#previewMyID12').html(data.alert);
$('#myID12FileName').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + identificacion)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + identificacion).show();
}
}
function readIDURL12E(input, identificacion) {
var fd = new FormData();
var files = $('#myID12E')[0].files;
fd.append('myID12E',files[0]);
$("#previewMyID12E").html('');
$("#previewMyID12E").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadIDBE.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#identificacion12E').src('');
$('#previewMyID12E').html(data.alert);
}
if(data.status === '1'){
$('#previewMyID12E').html(data.alert);
$('#myID12FileNameE').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + identificacion)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + identificacion).show();
}
}
function readFirmaURL(input, firma) {
var fd = new FormData();
var files = $('#myFirma')[0].files;
fd.append('myFirma',files[0]);
$("#previewMyFirma").html('');
$("#previewMyFirma").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadSignature.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#firma').src('');
$('#previewMyFirma').html(data.alert);
}
if(data.status === '1'){
$('#previewMyFirma').html(data.alert);
$('#myFirmaFileName').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + firma)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + firma).show();
}
}
function readFirmaURLE(input, firma) {
var fd = new FormData();
var files = $('#myFirmaE')[0].files;
fd.append('myFirmaE',files[0]);
$("#previewMyFirmaE").html('');
$("#previewMyFirmaE").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadSignatureE.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#firmaE').src('');
$('#previewMyFirmaE').html(data.alert);
}
if(data.status === '1'){
$('#previewMyFirmaE').html(data.alert);
$('#myFirmaFileNameE').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + firma)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + firma).show();
}
}
/*****************************************************************************************************************
*****************************************Player Management Team***************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
************************************************Config Admin******************************************************
*****************************************************************************************************************/
function configManagementShow(){
//console.log('configManagementShow Team = ' + Team);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Config/configManagementShow.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataConfig);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function readURLLogo(input, logoImage) {
var fd = new FormData();
var files = $('#myLogo')[0].files;
fd.append('myLogo',files[0]);
$("#previewMyLogo").html('');
$("#previewMyLogo").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadLogo.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
console.log(data.status);
if(data.status !== '1'){
$('#foto').src('');
$('#previewMyLogo').html(data.alert);
}
if(data.status === '1'){
$('#previewMyLogo').html(data.alert);
$('#myLogoFileName').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + logoImage)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + logoImage).show();
}
}
function configManagementInfoSave(leagueName, latitude, longitude, logo, logox, logoy, logoFileName, colorHeader, colorBody, colorFooter){
//console.log('configManagementInfoSave leagueName = ' + leagueName + ', latitude = ' + latitude + ', longitude = ' + longitude + ', logo = ' + logo + ', logox = ' + logox + ', logoy = ' + logoy + ', logoFileName = ' + logoFileName + ', colorHeader = ' + colorHeader + ', colorBody = ' + colorBody + ', colorFooter = ' + colorFooter);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Config/configManagementInfoSave.php',
data: {leagueName: leagueName, latitude: latitude, longitude: longitude, logo: logo, logox: logox, logoy: logoy, logoFileName: logoFileName, colorHeader: colorHeader, colorBody: colorBody, colorFooter: colorFooter},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataConfigAnswer);
}else{
alert(res.dataConfigAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function configManagementAlertSave(Alert){
//console.log('configManagementAlertSave Alert = ' + Alert);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Config/configManagementAlertSave.php',
data: {Alert: Alert},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataConfigAnswer);
}else{
alert(res.dataConfigAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function configManagementGeneralSave(lenguaje, EmpatesPenales, JugadorJugado, JuegoCedulas, MarcadorArbitro, MarcadorFecha, MarcadorDiaDefault, JornadaCedulas, columnid, ByeWeekPoints, ByeWeekPointsGoals){
//console.log('configManagementAlertSave');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Config/configManagementGeneralSave.php',
data: {EmpatesPenales: EmpatesPenales, JugadorJugado: JugadorJugado, JuegoCedulas: JuegoCedulas, MarcadorArbitro: MarcadorArbitro, MarcadorFecha: MarcadorFecha, JornadaCedulas: JornadaCedulas, columnid: columnid, MarcadorDiaDefault: MarcadorDiaDefault, lenguaje: lenguaje, ByeWeekPoints: ByeWeekPoints, ByeWeekPointsGoals: ByeWeekPointsGoals},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataConfigAnswer);
}else{
alert(res.dataConfigAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
************************************************Config Admin******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
************************************************Colours Admin*****************************************************
*****************************************************************************************************************/
function colorManagementShow(){
//console.log('colorManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Colors/colorsManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataColor);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function colorsManagementCreateSave(colorName, colorHEX){
//console.log('colorsManagementCreateSave colorName = ' + colorName + ', colorHEX = ' + colorHEX');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Colors/colorsManagementNewSave.php',
data: {colorName: colorName, colorHEX: colorHEX},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataColorAnswer);
colorManagementShow();
}else{
alert(res.dataColorAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function colorsManagementShowEdit(color){
//console.log('colorsManagementShowEdit color = ' + color);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Colors/colorsManagementEdit.php',
data: {color: color},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#colorsManagementEdit").css('display', 'block');
$("#colorsManagementList").css('display', 'none');
$("#colorsManagementEdit").html(res.dataColorEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function colorsManagementShowAdd(){
//console.log('colorsManagementShowAdd color = ' + color);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Colors/colorsManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#colorsManagementCreate").css('display', 'block');
$("#colorsManagementList").css('display', 'none');
$("#colorsManagementCreate").html(res.dataColorAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function colorsManagementUpdateSave(colorID, colorName, colorHEX){
//console.log('colorsManagementUpdateSave colorName = ' + colorName + ', colorHEX = ' + colorHEX');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Colors/colorsManagementUpdateSave.php',
data: {colorName: colorName, colorHEX: colorHEX, colorID: colorID},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataColorAnswer);
colorManagementShow();
}else{
alert(res.dataColorAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
************************************************Colours Admin*****************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
**********************************************Tournament Admin****************************************************
*****************************************************************************************************************/
function tournamentManagementShow(){
//console.log('tournamentManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Tournament/TournamentsManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataTournament);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function tournamentsManagementShowAdd(){
//console.log('tournamentsManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Tournament/TournamentsManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#tournamentsManagementCreate").css('display', 'block');
$("#tournamentsManagementList").css('display', 'none');
$("#tournamentsManagementCreate").html(res.tournamentAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function tournamentsManagementHideAdd(){
//console.log('tournamentsManagementHideAdd');
$("#tournamentsManagementCreate").css('display', 'none');
$("#tournamentsManagementList").css('display', 'block');
$("#tournamentsManagementCreate").html('');
}
function tournamentsManagementCreateSave(tournamentName, tournamentActual, tournamentInscr, tournamentVs, tournamentWeeks){
//console.log('tournamentsManagementCreateSave tournamentName = ' + tournamentName + ', tournamentActual = ' + tournamentActual + ', tournamentInscr = ' + tournamentInscr + ', tournamentVs = ' + tournamentVs + ', tournamentWeeks = ' + tournamentWeeks);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Tournament/TournamentsManagementNewSave.php',
data: {tournamentName: tournamentName, tournamentActual: tournamentActual, tournamentInscr: tournamentInscr, tournamentVs: tournamentVs, tournamentWeeks: tournamentWeeks},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataTournamentAnswer);
tournamentManagementShow();
}else{
alert(res.dataTournamentAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function tournamentsManagementShowEdit(tournament){
//console.log('tournamentsManagementShowEdit tournament = ' + tournament);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Tournament/TournamentsManagementEdit.php',
data: {tournament: tournament},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#tournamentsManagementEdit").css('display', 'block');
$("#tournamentsManagementList").css('display', 'none');
$("#tournamentsManagementEdit").html(res.dataTournamentEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function tournamentsManagementHideEdit(){
//console.log('tournamentsManagementHideEdit');
$("#tournamentsManagementEdit").css('display', 'none');
$("#tournamentsManagementList").css('display', 'block');
$("#tournamentsManagementEdit").html('');
}
function tournamentsManagementEditSave(tournamentid, tournamentName, tournamentActual, tournamentInscr, tournamentVs, tournamentWeeks){
//console.log('tournamentsManagementEditSave tournamentid = ' + tournamentid + ', tournamentName = ' + tournamentName + ', tournamentActual = ' + tournamentActual + ', tournamentInscr = ' + tournamentInscr + ', tournamentVs = ' + tournamentVs + ', tournamentWeeks = ' + tournamentWeeks);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Tournament/TournamentsManagementUpdateSave.php',
data: {tournamentid: tournamentid, tournamentName: tournamentName, tournamentActual: tournamentActual, tournamentInscr: tournamentInscr, tournamentVs: tournamentVs, tournamentWeeks: tournamentWeeks},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataTournamentAnswer);
tournamentManagementShow();
}else{
alert(res.dataTournamentAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
**********************************************Tournament Admin****************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
***********************************************Category Admin*****************************************************
*****************************************************************************************************************/
function categoryManagementShow(){
//console.log('categoryManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Category/CategoriesManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataCategory);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function categoryManagementShowAdd(){
//console.log('tournamentsManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Category/CategoriesManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#categoriesManagementCreate").css('display', 'block');
$("#categoriesManagementList").css('display', 'none');
$("#categoriesManagementCreate").html(res.categoryAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function categoryManagementHideAdd(){
//console.log('categoryManagementHideAdd');
$("#categoriesManagementCreate").css('display', 'none');
$("#categoriesManagementList").css('display', 'block');
$("#categoriesManagementCreate").html('');
}
function categoryManagementCreateSave(descripcion, orden, Inicial, Final, Color){
//console.log('categoryManagementCreateSave descripcion = ' + descripcion + ', orden = ' + orden + ', Inicial = ' + Inicial + ', Final = ' + Final + ', Color = ' + Color);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Category/CategoriesManagementNewSave.php',
data: {descripcion: descripcion, orden: orden, Inicial: Inicial, Final: Final, Color: Color},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataCategoryAnswer);
categoryManagementShow();
}else{
alert(res.dataCategoryAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function categoryManagementShowEdit(id){
//console.log('categoryManagementShowEdit category_id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Category/CategoriesManagementEdit.php',
data: {category: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#categoriesManagementEdit").css('display', 'block');
$("#categoriesManagementList").css('display', 'none');
$("#categoriesManagementEdit").html(res.dataCategoryEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function categoryManagementHideEdit(){
//console.log('categoryManagementHideEdit');
$("#categoriesManagementEdit").css('display', 'none');
$("#categoriesManagementList").css('display', 'block');
$("#categoriesManagementEdit").html('');
}
function categoryManagementEditSave(id, descripcion, orden, Inicial, Final, Color){
//console.log('categoryManagementEditSave id = ' + id + ', descripcion = ' + descripcion + ', orden = ' + orden + ', Inicial = ' + Inicial + ', Final = ' + Final + ', Color = ' + Color);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Category/CategoriesManagementUpdateSave.php',
data: {id: id, descripcion: descripcion, orden: orden, Inicial: Inicial, Final: Final, Color: Color},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataCategoryAnswer);
categoryManagementShow();
}else{
alert(res.dataCategoryAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
***********************************************Category Admin*****************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
***********************************************Field Admin*****************************************************
*****************************************************************************************************************/
function fieldManagementShow(){
//console.log('fieldManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Fields/FieldsManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataField);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function fieldManagementShowAdd(){
//console.log('fieldManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Fields/FieldsManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#fieldsManagementCreate").css('display', 'block');
$("#fieldsManagementList").css('display', 'none');
$("#fieldsManagementCreate").html(res.fieldAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function fieldManagementHideAdd(){
//console.log('fieldManagementHideAdd');
$("#fieldsManagementCreate").css('display', 'none');
$("#fieldsManagementList").css('display', 'block');
$("#fieldsManagementCreate").html('');
}
function fieldManagementCreateSave(descripcion, lat, long, zoom, google){
//console.log('fieldManagementCreateSave descripcion = ' + descripcion + ', lat = ' + lat + ', long = ' + long + ', zoom = ' + zoom + ', google = ' + google);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Fields/FieldsManagementNewSave.php',
data: {descripcion: descripcion, lat: lat, long: long, zoom: zoom, google: google},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataFieldAnswer);
fieldManagementShow();
}else{
alert(res.dataFieldAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function fieldManagementShowEdit(id){
//console.log('fieldManagementShowEdit field_id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Fields/FieldsManagementEdit.php',
data: {field: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#fieldsManagementEdit").css('display', 'block');
$("#fieldsManagementList").css('display', 'none');
$("#fieldsManagementEdit").html(res.dataFieldEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function fieldManagementHideEdit(){
//console.log('fieldManagementHideEdit');
$("#fieldsManagementEdit").css('display', 'none');
$("#fieldsManagementList").css('display', 'block');
$("#fieldsManagementEdit").html('');
}
function fieldManagementEditSave(id, descripcion, lat, long, zoom, google){
//console.log('fieldManagementEditSave id = ' + id + ', descripcion = ' + descripcion + ', lat = ' + lat + ', long = ' + long + ', zoom = ' + zoom + ', google = ' + google);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Fields/FieldsManagementUpdateSave.php',
data: {id: id, descripcion: descripcion, lat: lat, long: long, zoom: zoom, google: google},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataFieldAnswer);
fieldManagementShow();
}else{
alert(res.dataFieldAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
***********************************************Field Admin*****************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
***********************************************Team Admin*****************************************************
*****************************************************************************************************************/
function teamsManagementAdminCategoryShow(){
//console.log('teamsManagementAdminCategoryShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagementChangeCategories.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataCategory);
teamsManagementAdminCategoryTeamShow(res.category);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function teamsManagementAdminCategoryTeamShow(Category){
//console.log('teamsManagementAdminCategoryTeamShow Category = ' + Category);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagement.php',
data: {Category: Category},
success: function (res) {
mainLoadingOff();
if (res.status === '1') {
$('#teamContent').html(res.dataTeam);
teamsManagementAdminCategoryTeamShowReloadList(Category);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function teamsManagementAdminCategoryTeamShowReloadList(Category){
//console.log('teamsManagementAdminCategoryTeamShowReloadList Category = ' + Category);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagementChangeCategoriesReloadList.php',
data: {Category: Category},
success: function (res) {
mainLoadingOff();
$("#teamContentCategoryList").html(res.dataCategories);
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function teamManagementShowAdd(Category){
//console.log('teamManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagementCreate.php',
data: {Category: Category},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#teamsManagementCreate").css('display', 'block');
$("#teamsManagementList").css('display', 'none');
$("#teamsManagementCreate").html(res.teamAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function teamManagementHideAdd(){
//console.log('teamManagementHideAdd');
$("#teamsManagementCreate").css('display', 'none');
$("#teamsManagementList").css('display', 'block');
$("#teamsManagementCreate").html('');
}
function teamManagementCreateSave(categoria, descripcion, descripcionlarga, estatus, fuerza, campo, playera, short, calcetas, file){
//console.log('teamManagementCreateSave descripcion = ' + descripcion + ', descripcionLarga = ' + descripcionLarga + ', estatus = ' + estatus + ', fuerza = ' + fuerza + ', campo = ' + campo);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagementNewSave.php',
data: {descripcion: descripcion, descripcionlarga: descripcionlarga, estatus: estatus, fuerza: fuerza, campo: campo, playera: playera, short: short, calcetas: calcetas, file: file},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataTeamdAnswer);
teamsManagementAdminCategoryTeamShow(categoria);
}else{
alert(res.dataTeamdAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function teamManagementShowEdit(id, category){
//console.log('teamManagementShowEdit team = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagementEdit.php',
data: {team: id, category: category},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#teamsManagementEdit").css('display', 'block');
$("#teamsManagementList").css('display', 'none');
$("#teamsManagementEdit").html(res.dataTeamEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function teamManagementHideEdit(){
//console.log('teamManagementHideEdit');
$("#teamsManagementEdit").css('display', 'none');
$("#teamsManagementList").css('display', 'block');
$("#teamsManagementEdit").html('');
}
function teamManagementEditSave(id, categoria, descripcion, descripcionlarga, estatus, fuerza, campo, playera, short, calcetas, file){
//console.log('teamManagementEditSave id = ' + id + ', descripcion = ' + descripcion + ', descripcionLarga = ' + descripcionLarga + ', estatus = ' + estatus + ', fuerza = ' + fuerza + ', campo = ' + campo);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Teams/TeamsManagementUpdateSave.php',
data: {id: id, descripcion: descripcion, descripcionlarga: descripcionlarga, estatus: estatus, fuerza: fuerza, campo: campo, playera: playera, short: short, calcetas: calcetas, file: file},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataTeamdAnswer);
teamsManagementAdminCategoryTeamShow(categoria);
}else{
alert(res.dataTeamdAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function readTeamLogoURL(input, Logo) {
var fd = new FormData();
var files = $('#myLogo')[0].files;
fd.append('myLogo',files[0]);
$("#previewMyLogo").html('');
$("#previewMyLogo").html('
');
$.ajax({
type: 'POST',
enctype: 'multipart/form-data',
dataType: 'json',
url: 'objects/UploadTeamLogo.php',
data: fd,
contentType: false,
processData: false,
success: function (data) {
if(data.status !== '1'){
$('#Logo').src('');
$('#previewMyLogo').html(data.alert);
}
if(data.status === '1'){
$('#previewMyLogo').html(data.alert);
$('#myLogoFileName').val(data.action);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + Logo)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + Logo).show();
}
}
/*****************************************************************************************************************
*************************************************Team Admin*******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
*************************************************Weeks Admin******************************************************
*****************************************************************************************************************/
function weekManagementShow(){
//console.log('weekManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Week/WeeksManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataWeek);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function weekManagementShowAdd(){
//console.log('weekManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Week/WeeksManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#weeksManagementCreate").css('display', 'block');
$("#weeksManagementList").css('display', 'none');
$("#weeksManagementCreate").html(res.weekAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function weekManagementHideAdd(){
//console.log('weekManagementHideAdd');
$("#weeksManagementCreate").css('display', 'none');
$("#weeksManagementList").css('display', 'block');
$("#weeksManagementCreate").html('');
}
function weekManagementCreateSave(Desc, DescCorta, Orden, Fecha, Inicio, Fin){
//console.log('weekManagementCreateSave Desc = ' + Desc + ', DescCorta = ' + DescCorta + ', Orden = ' + Orden + ', Fecha = ' + Fecha + ', Inicio = ' + Inicio + ', Fin = ' + Fin);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Week/WeeksManagementNewSave.php',
data: {Desc: Desc, DescCorta: DescCorta, Orden: Orden, Fecha: Fecha, Inicio: Inicio, Fin: Fin},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataWeekAnswer);
weekManagementShow();
}else{
alert(res.dataWeekAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function weekManagementShowEdit(id){
//console.log('weekManagementShowEdit week_id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Week/WeeksManagementEdit.php',
data: {week: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#weeksManagementEdit").css('display', 'block');
$("#weeksManagementList").css('display', 'none');
$("#weeksManagementEdit").html(res.dataWeekEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function weekManagementHideEdit(){
//console.log('weekManagementHideEdit');
$("#weeksManagementEdit").css('display', 'none');
$("#weeksManagementList").css('display', 'block');
$("#weeksManagementEdit").html('');
}
function weekManagementEditSave(id, Desc, DescCorta, Orden, Fecha, Inicio, Fin){
//console.log('weekManagementEditSave id = ' + id + ', Desc = ' + Desc + ', DescCorta = ' + DescCorta + ', Orden = ' + Orden + ', Fecha = ' + Fecha + ', Inicio = ' + Inicio + ', Fin = ' + Fin);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Week/WeeksManagementUpdateSave.php',
data: {id: id, Desc: Desc, DescCorta: DescCorta, Orden: Orden, Fecha: Fecha, Inicio: Inicio, Fin: Fin},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataWeekAnswer);
weekManagementShow();
}else{
alert(res.dataWeekAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
*************************************************Weeks Admin******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
************************************************Alerts Admin******************************************************
*****************************************************************************************************************/
function alertManagementShow(){
//console.log('alertManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Alert/AlertsManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataAlert);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function alertManagementShowAdd(){
//console.log('alertManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Alert/AlertsManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#alertsManagementCreate").css('display', 'block');
$("#alertsManagementList").css('display', 'none');
$("#alertsManagementCreate").html(res.alertAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function alertManagementHideAdd(){
//console.log('alertManagementHideAdd');
$("#alertsManagementCreate").css('display', 'none');
$("#alertsManagementList").css('display', 'block');
$("#alertsManagementCreate").html('');
}
function alertManagementCreateSave(Titulo, Inicio, Fin, Status, editor){
//console.log('alertManagementCreateSave Titulo = ' + Titulo + ', Inicio = ' + Inicio + ', Fin = ' + Fin + ', Status = ' + Status + ', editor = ' + editor);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Alert/AlertsManagementNewSave.php',
data: {Titulo: Titulo, Inicio: Inicio, Fin: Fin, Status: Status, editor: editor},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataAlertAnswer);
alertManagementShow();
}else{
alert(res.dataAlertAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function alertManagementShowEdit(id){
//console.log('alertManagementShowEdit week_id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Alert/AlertsManagementEdit.php',
data: {alert: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#alertsManagementEdit").css('display', 'block');
$("#alertsManagementList").css('display', 'none');
$("#alertsManagementEdit").html(res.dataAlertEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function alertManagementHideEdit(){
//console.log('alertManagementHideEdit');
$("#alertsManagementEdit").css('display', 'none');
$("#alertsManagementList").css('display', 'block');
$("#alertsManagementEdit").html('');
}
function alertManagementEditSave(id, Titulo, Inicio, Fin, Status, editor){
//console.log('alertManagementEditSave id = ' + id + ', Titulo = ' + Titulo + ', Inicio = ' + Inicio + ', Fin = ' + Fin + ', Status = ' + Status + ', editor = ' + editor);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Alert/AlertsManagementUpdateSave.php',
data: {id: id, Titulo: Titulo, Inicio: Inicio, Fin: Fin, Status: Status, editor: editor},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataAlertAnswer);
alertManagementShow();
}else{
alert(res.dataAlertAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
************************************************Alerts Admin******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
*************************************************Memos Admin******************************************************
*****************************************************************************************************************/
function memoManagementShow(){
//console.log('memoManagementShow');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Memo/MemosManagement.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataMemo);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function memoManagementShowAdd(){
//console.log('memoManagementShowAdd');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Memo/MemosManagementCreate.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#memosManagementCreate").css('display', 'block');
$("#memosManagementList").css('display', 'none');
$("#memosManagementCreate").html(res.memoAdd);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function memoManagementHideAdd(){
//console.log('alertManagementHideAdd');
$("#memosManagementCreate").css('display', 'none');
$("#memosManagementList").css('display', 'block');
$("#memosManagementCreate").html('');
}
function memoManagementCreateSave(Titulo, Fecha, editor, file){
//console.log('memoManagementCreateSave Titulo = ' + Titulo + ', Fecha = ' + Fecha + ', editor = ' + editor + ', minuta = ' + minuta);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Memo/MemosManagementNewSave.php',
data: {Titulo: Titulo, Fecha: Fecha, editor: editor, file: file},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataMemoAnswer);
memoManagementShow();
}else{
alert(res.dataMemoAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function memoManagementShowEdit(id){
//console.log('memoManagementShowEdit week_id = ' + id);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Memo/MemosManagementEdit.php',
data: {memo: id},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#memosManagementEdit").css('display', 'block');
$("#memosManagementList").css('display', 'none');
$("#memosManagementEdit").html(res.dataMemoEdit);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function memoManagementHideEdit(){
//console.log('memoManagementHideEdit');
$("#memosManagementEdit").css('display', 'none');
$("#memosManagementList").css('display', 'block');
$("#memosManagementEdit").html('');
}
function memoManagementEditSave(id, Titulo, Fecha, editor, file){
//console.log('alertManagementEditSave id = ' + id + ', Titulo = ' + Titulo + ', Fecha = ' + Fecha + ', editor = ' + editor + ', minuta = ' + minuta);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Memo/MemosManagementUpdateSave.php',
data: {id: id, Titulo: Titulo, Fecha: Fecha, editor: editor, file: file},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
alert(res.dataMemoAnswer);
memoManagementShow();
}else{
alert(res.dataMemoAnswer);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
/*****************************************************************************************************************
*************************************************Memos Admin******************************************************
*****************************************************************************************************************/
/*****************************************************************************************************************
*************************************************Games Admin******************************************************
*****************************************************************************************************************/
function loadWeeksAdmin(){
//console.log('loadWeeksAdmin');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/changeWeeksAdmin.php',
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#body").html(res.dataWeeksAdmin);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadWeekAdmin(Week){
//console.log('loadWeekAdmin week = ' + Week);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/changeWeekAdmin.php',
data: {Week: Week},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
loadWeekAdmminReloadList(Week);
$("#weekAdminContent").html(res.dataWeekAdmin);
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadWeekAdmminReloadList(Week){
//console.log('loadWeekReloadList week = ' + Week);
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/changeWeeksAdminReloadWeekSelector.php',
data: {Week: Week},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#weekadminselectorsection").html(res.dataWeeks);
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadWeekAdminGameComments(Comment, GameID){
//console.log('loadWeekAdminGameComments');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/weekAdmin-ScheduleScores-Comment.php',
data: {GameID: GameID, Comment: Comment},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#comentarioInput").html(res.dataWeekAdminGameComment);
$("#comentarioInput").toggle();
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function abrirFichaEdit(id, week, game, gamedesc, lgoals, vgoals, Arbitro, Comentarios, Extral, Extrav, SQL){
//console.log('abrirFichaEdit');
var attr = $('#edit'+id).attr('style');
$('.juego').css('display', 'none');
$('#expandir'+id).attr('src', './imagenes/expandir.png');
$('.expandirButton').attr('src', './imagenes/expandir.png');
// For some browsers, `attr` is undefined; for others,
// `attr` is false. Check for both.
if (typeof attr == typeof undefined) {
$('#edit'+id).css('display', 'none');
$('#expandir'+id).attr('src', './imagenes/expandir.png');
$("#content" + id).html('');
}else{
$('#edit'+id).removeAttr('style');
$('#expandir'+id).attr('src', './imagenes/colapsar.png');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/weekAdmin-ScheduleScoresGameDetail.php',
data: {week: week, game: game, gamedesc: gamedesc, lgoals: lgoals, vgoals: vgoals, Arbitro: Arbitro, Comentarios: Comentarios, Extral: Extral, Extrav: Extrav, SQL: SQL},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#content" + id).html(res.dataWeekGameDetail);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
}
function abrirFichaEditS(id, week, game, gamedesc, lgoals, vgoals, Arbitro, Comentarios, Extral, Extrav, SQL){
//console.log('abrirFichaEditS');
var attr = $('#editS'+id).attr('style');
$('.juegoS').css('display', 'none');
$('#expandirS'+id+'SA').attr('src', './imagenes/expandir.png');
$('.expandirButtonS').attr('src', './imagenes/expandir.png');
// For some browsers, `attr` is undefined; for others,
// `attr` is false. Check for both.
if (typeof attr == typeof undefined) {
$('#editS'+id).css('display', 'none');
$('#expandirS'+id).attr('src', './imagenes/expandir.png');
$("#contentS" + id).html('');
}else{
$('#editS'+id).removeAttr('style');
$('#expandirS'+id+'SA').attr('src', './imagenes/colapsar.png');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/weekAdmin-ScheduleScoresGameDetailS.php',
data: {week: week, game: game, gamedesc: gamedesc, lgoals: lgoals, vgoals: vgoals, Arbitro: Arbitro, Comentarios: Comentarios, Extral: Extral, Extrav: Extrav, SQL: SQL},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#contentS" + id).html(res.dataWeekGameDetail);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
}
function loadWeekAdminGameDetailRoja(redComment, playerID, redDays, redFee, redPaid, type){
//console.log('loadWeekAdminGameDetailRoja');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/weekAdmin-ScheduleScores-RedComment.php',
data: {RedComment: redComment, PlayerID: playerID, RedDays: redDays, RedFee: redFee, RedPaid: redPaid, Type: type},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#rojaInput").html(res.dataWeekAdminGameRedComment);
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function loadWeekAdminGameDetailDocs(Season, Week, Game){
//console.log('loadWeekAdminGameDetailDocs');
mainLoadingOn();
$.ajax({
type: 'POST',
dataType: 'json',
url: 'ajax/Admin/Games/weekAdmin-ScheduleScores-GameDocuments.php',
data: {Week: Week, Game: Game},
success: function (res) {
mainLoadingOff()
if (res.status === '1') {
$("#gameDocInput").html(res.dataWeekAdminGameDocs);
}else{
console.log(res);
}
},
error: function(jqxhr, status, exception) {
console.log('Exception:' + exception);
}
});
}
function readURLA4(input, Anexo4) {
$("#previewMyAnexo4").html('');
$("#previewMyAnexo4").html('
');
$("#anexo4_upload_form").ajaxForm({
dataType: 'json',
success: showResponseMyAnexo4
}).submit();
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + Anexo4)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + Anexo4).show();
$('#' + Anexo4).width('100%').height('auto');
}
}
function readURLA1(input, Anexo1) {
$("#previewMyAnexo1").html('');
$("#previewMyAnexo1").html('
');
$("#anexo1_upload_form").ajaxForm({
dataType: 'json',
success: showResponseMyAnexo1
}).submit();
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + Anexo1)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + Anexo1).show();
$('#' + Anexo1).width('100%').height('auto');
}
}
function readURLA2(input, Anexo2) {
$("#previewMyAnexo2").html('');
$("#previewMyAnexo2").html('
');
$("#anexo2_upload_form").ajaxForm({
dataType: 'json',
success: showResponseMyAnexo2
}).submit();
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + Anexo2)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + Anexo2).show();
$('#' + Anexo2).width('100%').height('auto');
}
}
function readURLA3(input, Anexo3) {
$("#previewMyAnexo3").html('');
$("#previewMyAnexo3").html('
');
$("#anexo3_upload_form").ajaxForm({
dataType: 'json',
success: showResponseMyAnexo3
}).submit();
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#' + Anexo3)
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
$('#' + Anexo3).show();
$('#' + Anexo3).width('100%').height('auto');
}
}
/*****************************************************************************************************************
*************************************************Games Admin******************************************************
*****************************************************************************************************************/