!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\plugins\slideshow-jquery-image-gallery\classes\   drwxrwxrwx
Free 4.1 GB of 39.52 GB (10.37%)
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:     SlideshowPluginSlideshowView.php (2.34 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * SlideshowPluginSlideshowView provides functions for outputting a view with all its slides for back-end as well as
 * front-end display.
 *
 * @since 2.2.0
 * @author Stefan Boonstra
 */
class SlideshowPluginSlideshowView
{
    
/** @var SlideshowPluginSlideshowSlide $slides */
    
private $slides = array();

    
/**
     * Pass an array of slideProperties to create slides from.
     *
     * See SlideshowPluginSlideshowSlide's class description for the properties needed to build a slide.
     *
     * @since 2.2.0
     * @param array $slidesProperties (optional)
     */
    
function __construct($slidesProperties = array())
    {
        if (
is_array($slidesProperties))
        {
            foreach (
$slidesProperties as $slideProperties)
            {
                
$this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
            }
        }
    }

    
/**
     * Creates a new slide object and adds it to the view.
     *
     * See SlideshowPluginSlideshowSlide's class description for the properties needed to build a slide.
     *
     * @since 2.2.0
     * @param array $slideProperties
     */
    
function addSlide($slideProperties)
    {
        if (
is_array($slideProperties))
        {
            
$this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
        }
    }

    
/**
     * Build view for front-end use.
     *
     * Returns when $return is true, prints when $return is false.
     *
     * @since 2.2.0
     * @param boolean $return (optional, defaults to true)
     * @return String $frontEndHTML
     */
    
function toFrontEndHTML($return true)
    {
        
$frontEndHTML '<div class="slideshow_view">';

        foreach (
$this->slides as $slide)
        {
            
$frontEndHTML .= $slide->toFrontEndHTML();
        }

        
$frontEndHTML .= '<div style="clear: both;"></div></div>';

        if (
$return)
        {
            return 
$frontEndHTML;
        }

        echo 
$frontEndHTML;

        return 
"";
    }

    
/**
     * Build view for back-end use.
     *
     * Returns when $return is true, prints when $return is false.
     *
     * @since 2.2.0
     * @param boolean $return (optional, defaults to true)
     * @return String $backEndHTML
     */
    
function toBackEndHTML($return true)
    {
        
$backEndHTML '';
        foreach (
$this->slides as $slide)
        {
            if (!(
$slide instanceof SlideshowPluginSlideshowSlide))
            {
                continue;
            }

            
$backEndHTML .= $slide->toBackEndHTML();
        }

        if (
$return)
        {
            return 
$backEndHTML;
        }

        echo 
$backEndHTML;

        return 
"";
    }
}

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