!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\cumbreclima\wp-content\themes\patti\framework\ReduxFramework\ReduxCore\inc\fields\spinner\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.35%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

// Exit if accessed directly
    
if ( ! defined'ABSPATH' ) ) {
        exit;
    }

    if ( ! 
class_exists'ReduxFramework_spinner' ) ) {
        class 
ReduxFramework_spinner {

            
/**
             * Field Constructor.
             * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
             *
             * @since ReduxFramework 3.0.0
             */
            
function __construct$field = array(), $value ''$parent ) {
                
$this->parent $parent;
                
$this->field  $field;
                
$this->value  $value;
            } 
//function

            /**
             * Field Render Function.
             * Takes the vars and outputs the HTML for the field in the settings
             *
             * @since ReduxFramework 3.0.0
             */
            
function render() {

                
$params = array(
                    
'min'     => '',
                    
'max'     => '',
                    
'step'    => '',
                    
'default' => '',
                );

                
$this->field wp_parse_args$this->field$params );
                
$data_string "";
                foreach(
$this->field as $key => $val) {
                    if (
in_array($key, array('min''max''step''default'))) {
                        
$data_string.= " data-".$key.'="'.$val.'"';
                    }
                }
                
$data_string .= ' data-val="'.$val.'"';


                
// Don't allow input edit if there's a step
                
$readonly "";
                if ( isset( 
$this->field['edit'] ) && $this->field['edit'] == false ) {
                    
$readonly ' readonly="readonly"';
                }


                echo 
'<div id="' $this->field['id'] . '-spinner" class="redux_spinner" rel="' $this->field['id'] . '">';
                echo 
'<input type="text" '.$data_string.' name="' $this->field['name'] . $this->field['name_suffix'] . '" id="' $this->field['id'] . '" value="' $this->value '" class="mini spinner-input' $this->field['class'] . '"' $readonly '/>';
                echo 
'</div>';
            } 
//function

            /**
             * Clean the field data to the fields defaults given the parameters.
             *
             * @since Redux_Framework 3.1.1
             */
            
function clean() {

                if ( empty( 
$this->field['min'] ) ) {
                    
$this->field['min'] = 0;
                } else {
                    
$this->field['min'] = intval$this->field['min'] );
                }

                if ( empty( 
$this->field['max'] ) ) {
                    
$this->field['max'] = intval$this->field['min'] ) + 1;
                } else {
                    
$this->field['max'] = intval$this->field['max'] );
                }

                if ( empty( 
$this->field['step'] ) || $this->field['step'] > $this->field['max'] ) {
                    
$this->field['step'] = 1;
                } else {
                    
$this->field['step'] = intval$this->field['step'] );
                }

                if ( empty( 
$this->value ) && ! empty( $this->field['default'] ) && intval$this->field['min'] ) >= ) {
                    
$this->value intval$this->field['default'] );
                }

                if ( empty( 
$this->value ) && intval$this->field['min'] ) >= ) {
                    
$this->value intval$this->field['min'] );
                }

                if ( empty( 
$this->value ) ) {
                    
$this->value 0;
                }

                
// Extra Validation
                
if ( $this->value $this->field['min'] ) {
                    
$this->value intval$this->field['min'] );
                } else if ( 
$this->value $this->field['max'] ) {
                    
$this->value intval$this->field['max'] );
                }
            }

            
/**
             * Enqueue Function.
             * If this field requires any scripts, or css define this function and register/enqueue the scripts/css
             *
             * @since ReduxFramework 3.0.0
             */
            
function enqueue() {

                
wp_enqueue_script(
                    
'redux-field-spinner-custom-js',
                    
ReduxFramework::$_url 'inc/fields/spinner/vendor/spinner_custom.js',
                    array( 
'jquery' ),
                    
time(),
                    
true
                
);

                
wp_enqueue_script(
                    
'redux-field-spinner-js',
                    
ReduxFramework::$_url 'inc/fields/spinner/field_spinner' Redux_Functions::isMin() . '.js',
                    array(
                        
'jquery',
                        
'redux-field-spinner-custom-js',
                        
'jquery-ui-core',
                        
'jquery-ui-dialog',
                        
'redux-js'
                    
),
                    
time(),
                    
true
                
);

                
wp_enqueue_style(
                    
'redux-field-spinner-css',
                    
ReduxFramework::$_url 'inc/fields/spinner/field_spinner.css',
                    
time(),
                    
true
                
);
            }

        }
    }

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--