!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/abstracts/   drwxr-xr-x
Free 289.42 GB of 429.69 GB (67.36%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     abstract-kkart-integration.php (1.83 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Abstract Integration class
 *
 * Extension of the Settings API which in turn gets extended
 * by individual integrations to offer additional functionality.
 *
 * @class       KKART_Settings_API
 * @version     2.6.0
 * @package     Kkart\Abstracts
 */

if ( ! defined'ABSPATH' ) ) {
    exit;
}

/**
 * Abstract Integration Class
 *
 * Extended by individual integrations to offer additional functionality.
 *
 * @class    KKART_Integration
 * @extends  KKART_Settings_API
 * @version  2.6.0
 * @package  Kkart\Abstracts
 */
abstract class KKART_Integration extends KKART_Settings_API {

    
/**
     * Yes or no based on whether the integration is enabled.
     *
     * @var string
     */
    
public $enabled 'yes';

    
/**
     * Integration title.
     *
     * @var string
     */
    
public $method_title '';

    
/**
     * Integration description.
     *
     * @var string
     */
    
public $method_description '';

    
/**
     * Return the title for admin screens.
     *
     * @return string
     */
    
public function get_method_title() {
        return 
apply_filters'kkart_integration_title'$this->method_title$this );
    }

    
/**
     * Return the description for admin screens.
     *
     * @return string
     */
    
public function get_method_description() {
        return 
apply_filters'kkart_integration_description'$this->method_description$this );
    }

    
/**
     * Output the gateway settings screen.
     */
    
public function admin_options() {
        echo 
'<h2>' esc_html$this->get_method_title() ) . '</h2>';
        echo 
wp_kses_postwpautop$this->get_method_description() ) );
        echo 
'<div><input type="hidden" name="section" value="' esc_attr$this->id ) . '" /></div>';
        
parent::admin_options();
    }

    
/**
     * Init settings for gateways.
     */
    
public function init_settings() {
        
parent::init_settings();
        
$this->enabled = ! empty( $this->settings['enabled'] ) && 'yes' === $this->settings['enabled'] ? 'yes' 'no';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0043 ]--