403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.144.19.224
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/sieuthiweb.com.vn/wp-content/plugins/wp-all-import-pro/libraries/ast/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/sieuthiweb.com.vn/wp-content/plugins/wp-all-import-pro/libraries/ast/XmlImportAstLiteral.php
<?php
/**
 * @author Olexandr Zanichkovsky <[email protected]>
 * @package AST
 */

require_once dirname(__FILE__) . '/XmlImportAstExpression.php';

/**
 * Represents a literal node
 *
 * @abstract
 */
abstract class XmlImportAstLiteral extends XmlImportAstExpression
{
  /**
   * Vsalue of a node
   *
   * @var mixed
   */
  private $value;

  /**
   * Creates new instance of a token
   *
   * @param mixed $value
   */
  public function __construct($value)
  {
    $this->value = $value;
  }

  /**
   * Gets a value of a node
   *
   * @return mixed
   */
  public function getValue()
  {
    return $this->value;
  }

  /**
   * String representation of an literal
   *
   * @return string
   */
  public function __toString()
  {
    return get_class($this) . ': "' . $this->getValue() . "\"";
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit