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


Viewing file:     toba_migracion_1_0_3.php (2.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class toba_migracion_1_0_3 extends toba_migracion
{
    function 
instancia__creacion_skins()
    {
        
$sql[] = "INSERT INTO apex_estilo (estilo,descripcion) VALUES ('cubos','cubos');";
        
$sql[] = "
            CREATE TABLE apex_objeto_db_registros_ext
            (
                objeto_proyecto                       varchar(15)        NOT NULL,
                objeto                             int4               NOT NULL,
                externa_id                        int4            NOT NULL, 
                tipo                            varchar(3)        NOT NULL,
                sincro_continua                    smallint        NULL,
                metodo                            varchar(100)    NULL,
                clase                            varchar(100)    NULL,
                include                            varchar(255)    NULL,
                sql                                varchar            NULL
            );

            CREATE TABLE apex_objeto_db_registros_ext_col
            (
                objeto_proyecto                       varchar(15)        NOT NULL,
                objeto                             int4               NOT NULL,
                externa_id                        int4            NOT NULL,
                col_id                            int4            NOT NULL,
                es_resultado                    smallint        NULL
            );
        "
;
        
$this->elemento->get_db()->ejecutar($sql);
    }    
    
    
    function 
proyecto__estilo_filtro()
    {
        
$cant 0;
        
$sql "
            UPDATE apex_objeto_eventos SET 
                estilo = 'ei-boton-filtrar',
                imagen_recurso_origen = 'apex',
                imagen = 'filtrar.png'
            WHERE
                proyecto = '
{$this->elemento->get_id()}' AND
                identificador = 'filtrar'
        "
;
        
$cant += $this->elemento->get_db()->ejecutar($sql);
        
        
//--- Actualiza el Cancelar
        
$sql "
            UPDATE apex_objeto_eventos
            SET 
                estilo = 'ei-boton-limpiar',
                imagen_recurso_origen = 'apex',
                imagen = 'limpiar.png',
                etiqueta = '&Limpiar'
            FROM
                apex_objeto as obj
            WHERE
                obj.proyecto = '
{$this->elemento->get_id()}' AND
                obj.clase = 'objeto_ei_filtro' AND
                obj.proyecto = apex_objeto_eventos.proyecto AND
                obj.objeto = apex_objeto_eventos.objeto AND
                apex_objeto_eventos.identificador = 'cancelar'
        "
;
        
$cant += $this->elemento->get_db()->ejecutar($sql);
        return 
$cant;
    }
    
    
    function 
proyecto__skins()
    {
        
$sql "
            UPDATE apex_proyecto
                SET estilo = 'cubos'
                WHERE 
                    proyecto='
{$this->elemento->get_id()}' AND
                    estilo = 'toba'
        "
;
        return 
$this->elemento->get_db()->ejecutar($sql);
    }
}    


?>

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