!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_tdfonline/php/modelo/moldes_metadatos/   drwxr-xr-x
Free 14.93 GB of 61.93 GB (24.1%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     toba_ei_cuadro_molde.php (2.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
*    
*/
class toba_ei_cuadro_molde extends toba_molde_elemento_componente_ei
{
    protected 
$clase 'toba_ei_cuadro';
    protected 
$columnas;
    protected 
$proxima_col 0;
    
    function 
ini()
    {
        
parent::ini();
        
$this->datos->tabla('prop_basicas')->nueva_fila(array());
        
$this->datos->tabla('prop_basicas')->set_cursor(0);
    }
    
    
//---------------------------------------------------
    //-- API de construccion
    //---------------------------------------------------    
    
    
function agregar_columna($identificador$tipo)
    {
        
$this->columnas[$identificador] = new toba_molde_cuadro_col($identificador$tipo);
        
$this->columnas[$identificador]->set_orden($this->proxima_col);
        
$this->proxima_col++;
        return 
$this->columnas[$identificador];
    }
    
    function 
columna($identificador)
    {
        if(!isset(
$this->columnas[$identificador])) {
            throw new 
toba_error_asistentes('Molde cuadro: la columna solicitada no existe');    
        }
        return 
$this->columnas[$identificador];
    }

    function 
set_clave($clave)
    {
        if(
is_array($clave)){
            
$clave implode(',',$clave);
        }
        
$this->datos->tabla('prop_basicas')->set_fila_columna_valor(0,'columnas_clave',$clave);
    }

    function 
set_eof_invisible()
    {
        
$this->datos->tabla('prop_basicas')->set_fila_columna_valor(0,'eof_invisible'1);
    }
    
    function 
set_eof($mensaje)
    {
        
$this->datos->tabla('prop_basicas')->set_fila_columna_valor(0,'eof_customizado',$mensaje);
    }
    
    function 
set_scroll($alto)
    {
        if((
strpos($alto,'%')===false) && (strpos($alto,'px')===false)) {
            throw new 
toba_error_asistentes("MOLDE CUADRO: El alto del SCROLL debe definirse con el tipo de medida asociado ('%' o 'px'). Definido: $alto");
        }
        
$this->datos->tabla('prop_basicas')->set_fila_columna_valor(0,'scroll',1);
        
$this->datos->tabla('prop_basicas')->set_fila_columna_valor(0,'scroll_alto',$alto);
    }
    
    
//---------------------------------------------------
    //-- Generacion de METADATOS & ARCHIVOS
    //---------------------------------------------------
    
    
function generar()
    {
        foreach(
$this->columnas as $ef) {
             
$this->datos->tabla('columnas')->nueva_fila($ef->get_datos());
        }
        
parent::generar();
    }
}
?>

:: 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.6833 ]--