403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.142.171.160
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/XmlImportAstPrint.php
<?php
/**
 * @author Olexandr Zanichkovsky <[email protected]>
 * @package AST
 */

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

/**
 * Represents a PRINT node
 */
class XmlImportAstPrint extends XmlImportAstStatement
{
  /**
   * Expression to print
   *
   * @var XmlImportAstExpression
   */
  private $value;

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

  /**
   * Get value to be printed
   *
   * @return XmlImportAstExpression
   */
  public function getValue()
  {
    return $this->value;
  }

  /**
   * String representation of a PRINT clause
   *
   * @return string
   */
  public function __toString()
  {
    $result = "--> begin " . get_class($this) . "\n";
    $array = explode("\n", $this->value);
    for ($i = 0; $i < count($array); $i++)
    {
      $array[$i] = '  ' . $array[$i];
    }
    $result .= implode("\n", $array) . "\n";
    
    $result .= "--> end " . get_class($this);

    return $result;
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit