Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove labels #40

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions core/marco_nav.php
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,7 @@ function PCO_DetectarSistemaOperativoCliente()
if ($Activar_ModuloChat==1 && PCO_EsUsuarioInterno(@$PCOSESS_LoginUsuario))
echo $ComplementoOpcionMenu;
}
?>
<?php

//Busca si tiene tableros kanban o le han compartido alguno
$RegistroTableros=PCO_EjecutarSQL("SELECT id FROM ".$TablasCore."kanban WHERE archivado<>1 AND categoria='[PRACTICO][ColumnasTablero]' AND (login_admintablero='$PCOSESS_LoginUsuario' OR compartido_rw LIKE '%|$PCOSESS_LoginUsuario|%') LIMIT 0,1 ")->fetch();

Expand All @@ -397,9 +396,7 @@ function PCO_DetectarSistemaOperativoCliente()

if ($RegistroTableros["id"]!="" || $PCOVAR_EsAdminKanban==1)
echo '<li><a href="javascript:document.PCO_ExplorarTablerosKanban.submit();"><i class="fa fa-sticky-note fa-fw"></i> '.$MULTILANG_TablerosKanban.'</a></li>';
?>

<?php
//Determina si el usurio puede o no cambiar el modo dia/noche segun estado en panel de configuracion
if ($PCO_PermitirUsuariosModoNoche=="1")
{
Expand All @@ -409,9 +406,7 @@ function PCO_DetectarSistemaOperativoCliente()
$IconoModoDiaNoche=$IconoModoActivo.' Activar modo oscuro';
echo '<li><a href="javascript:document.PCO_CargarActualizarPefil.submit();">'.$IconoModoDiaNoche.'</a></li>';
}
?>

<?php
//Determina si esta en modo desarrollador del framework y agrega opcion para saltar al banco de pruebas interno
if ($ModoDesarrolladorPractico==-10000 && PCO_EsAdministrador(@$PCOSESS_LoginUsuario))
echo '<li><a href="index.php?PCO_Accion=PCO_CargarObjeto&PCO_Objeto=frm:-25:1"><i class="fa fa-steam fa-fw"></i> <b>Banco de pruebas interno</b></a></li>';
Expand Down Expand Up @@ -466,7 +461,7 @@ function PCO_CargarReportarBugs()
//Captura otros datos informativos de la aplicacion
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+="TRAZAS DE APLICACION / APPLICATION DEBUG\n==================================================\n";
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+="<?php echo $MULTILANG_TiempoCarga; ?>:"+$('#PCO_TCarga').text()+" seg.";
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+=" <?php echo $MULTILANG_TiempoCarga; ?> JS:"+$('#PCO_TCargaJS').text()+" seg.\n";
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+="<?php echo $MULTILANG_TiempoCarga; ?> JS:"+$('#PCO_TCargaJS').text()+" seg.\n";
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+="<?php echo $MULTILANG_Instante; ?>: <?php echo $PCO_FechaOperacionGuiones;?> <?php echo $PCO_HoraOperacionPuntos;?>"+"\n";
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+="<?php echo $MULTILANG_Accion; ?>: <?php echo $PCO_Accion;?>"+"\n";
document.PCO_ReportarBugs.PCO_CapturaTrazas.value+="<?php echo $MULTILANG_Usuario; ?>: <?php echo $PCOSESS_LoginUsuario;?>"+"\n";
Expand Down