'discount',
			'plural'   => 'discounts',
			'ajax'     => false,
		) );
		$this->process_bulk_action();
		$this->get_counts();
	}
	/**
	 * Get the base URL for the discount list table
	 *
	 * @since 3.0
	 *
	 * @return string
	 */
	public function get_base_url() {
		// Remove some query arguments
		$base = remove_query_arg( edd_admin_removable_query_args(), edd_get_admin_base_url() );
		// Add base query args
		return add_query_arg( array(
			'page' => 'edd-discounts',
		), $base );
	}
	/**
	 * Retrieve the table columns
	 *
	 * @since 1.4
	 *
	 * @return array $columns Array of all the list table columns
	 */
	public function get_columns() {
		return apply_filters( 'edd_discounts_table_columns', array(
			'cb'         => '',
			'name'       => __( 'Name',       'easy-digital-downloads' ),
			'code'       => __( 'Code',       'easy-digital-downloads' ),
			'amount'     => __( 'Amount',     'easy-digital-downloads' ),
			'use_count'  => __( 'Uses',       'easy-digital-downloads' ),
			'start_date' => __( 'Start Date', 'easy-digital-downloads' ),
			'end_date'   => __( 'End Date',   'easy-digital-downloads' )
		) );
	}
	/**
	 * Retrieve the sortable columns
	 *
	 * @since 1.4
	 *
	 * @return array Array of all the sortable columns
	 */
	public function get_sortable_columns() {
		return apply_filters( 'edd_discounts_table_sortable_columns', array(
			'name'       => array( 'name',       false ),
			'code'       => array( 'code',       false ),
			'use_count'  => array( 'use_count',  false ),
			'start_date' => array( 'start_date', false ),
			'end_date'   => array( 'end_date',   false )
		) );
	}
	/**
	 * Gets the name of the primary column.
	 *
	 * @since 2.5
	 * @access protected
	 *
	 * @return string Name of the primary column.
	 */
	protected function get_primary_column_name() {
		return 'name';
	}
	/**
	 * This function renders most of the columns in the list table.
	 *
	 * @since 1.4
	 *
	 * @param EDD_Discount $discount Discount object.
	 * @param string $column_name The name of the column
	 *
	 * @return string Column Name
	 */
	public function column_default( $discount, $column_name ) {
		$value = property_exists( $discount, $column_name ) ? $discount->$column_name : '';
		return apply_filters( 'edd_discounts_table_column', $value, $discount, $column_name );
	}
	/**
	 * This function renders the amount column.
	 *
	 * @since 3.0
	 *
	 * @param EDD_Discount $discount Data for the discount code.
	 * @return string Formatted amount.
	 */
	public function column_amount( $discount ) {
		return edd_format_discount_rate( $discount->type, $discount->amount );
	}
	/**
	 * This function renders the start column.
	 *
	 * @since 3.0
	 *
	 * @param EDD_Discount $discount Discount object.
	 * @return string Start  date
	 */
	public function column_start_date( $discount ) {
		$start_date            = $discount->start_date;
		$timezone_abbreviation = edd_get_timezone_abbr();
		if ( $start_date ) {
			$display = edd_date_i18n( $start_date, 'M. d, Y' ) . '
' . edd_date_i18n( $start_date, 'H:i' ) . ' ' . $timezone_abbreviation;
		} else {
			$display = '—';
		}
		return $display;
	}
	/**
	 * Render the Expiration column.
	 *
	 * @since 3.0
	 *
	 * @param EDD_Discount $discount Discount object.
	 * @return string Expiration date.
	 */
	public function column_end_date( $discount ) {
		$expiration            = $discount->end_date;
		$timezone_abbreviation = edd_get_timezone_abbr();
		if ( $expiration ) {
			$display = edd_date_i18n( $expiration, 'M. d, Y' ) . '
' . edd_date_i18n( $expiration, 'H:i' ) . ' ' . $timezone_abbreviation;
		} else {
			$display = '—';
		}
		return $display;
	}
	/**
	 * Render the Name column.
	 *
	 * @since 1.4
	 *
	 * @param EDD_Discount $discount Discount object.
	 * @return string Data shown in the Name column
	 */
	public function column_name( $discount ) {
		$base        = $this->get_base_url();
		$state       = '';
		$row_actions = array();
		$status      = $this->get_status();
		// Bail if current user cannot manage discounts
		if ( ! current_user_can( 'manage_shop_discounts' ) ) {
			return;
		}
		// State
		if ( ( ! empty( $status ) && ( $status !== $discount->status ) ) || ( 'active' !== $discount->status ) ) {
			$state = ' — ' . edd_get_discount_status_label( $discount->id );
		}
		// Edit
		$row_actions['edit'] = '' . __( 'Edit', 'easy-digital-downloads' ) . '';
		// Active, so add "deactivate" action
		if ( 'active' === strtolower( $discount->status ) ) {
			$row_actions['cancel'] = '' . __( 'Deactivate', 'easy-digital-downloads' ) . '';
		// Inactive, so add "activate" action
		} elseif ( 'inactive' === strtolower( $discount->status ) ) {
			$row_actions['activate'] = '' . __( 'Activate', 'easy-digital-downloads' ) . '';
		}
		// Delete
		if ( 0 === (int) $discount->use_count ) {
			$row_actions['delete'] = '' . __( 'Delete', 'easy-digital-downloads' ) . '';
		} else {
			$row_actions['orders'] = '' . __( 'View Orders', 'easy-digital-downloads' ) . '';
		}
		// Filter all discount row actions
		$row_actions = apply_filters( 'edd_discount_row_actions', $row_actions, $discount );
		// Wrap discount title in strong anchor
		$discount_title = '' . stripslashes( $discount->name ) . '' . esc_html( $state ) . '';
		/**
		 * Filter to allow additional content to be appended to the discount title.
		 *
		 * @since 3.0
		 *
		 * @param EDD_Discount $discount Discount object.
		 * @param string $base The base URL for the discount list table.
		 * @param string $status The queried discount status.
		 * @return string Additional data shown in the Name column
		 */
		$additional_content = apply_filters( 'edd_discount_row_after_title', '', $discount, $base, $status );
		// Return discount title & row actions
		return $discount_title . $additional_content . $this->row_actions( $row_actions );
	}
	/**
	 * Render the checkbox column.
	 *
	 * @since 1.4
	 *
	 * @param EDD_Discount $discount Discount object.
	 * @return string Checkbox HTML.
	 */
	public function column_cb( $discount ) {
		return sprintf(
			'',
			/*$1%s*/ 'discount',
			/*$2%s*/ absint( $discount->id ),
			/* translators: discount name */
			esc_html( sprintf( __( 'Select %s', 'easy-digital-downloads' ), $discount->name ) )
		);
	}
	/**
	 * Return discount code wrapped in a `` tag.
	 *
	 * @since 3.0
	 *
	 * @param EDD_Discount $discount Discount object.
	 * @return string Discount code HTML.
	 */
	public function column_code( $discount ) {
		return '' . $discount->code . '';
	}
	/**
	 * Message to be displayed when there are no items.
	 *
	 * @since 1.7.2
	 */
	public function no_items() {
		esc_html_e( 'No discounts found.', 'easy-digital-downloads' );
	}
	/**
	 * Retrieve the bulk actions
	 *
	 * @since 1.4
	 * @return array $actions Array of the bulk actions
	 */
	public function get_bulk_actions() {
		return array(
			'activate'   => __( 'Activate',   'easy-digital-downloads' ),
			'deactivate' => __( 'Deactivate', 'easy-digital-downloads' ),
			'delete'     => __( 'Delete',     'easy-digital-downloads' )
		);
	}
	/**
	 * Process bulk actions.
	 *
	 * @since 1.4
	 */
	public function process_bulk_action() {
		// Bail if a nonce was not supplied.
		if ( ! isset( $_REQUEST['_wpnonce'] ) ) {
			return;
		}
		if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'bulk-discounts' ) ) {
			return;
		}
		check_admin_referer( 'bulk-discounts' );
		$ids = wp_parse_id_list( (array) $this->get_request_var( 'discount', false ) );
		// Bail if no IDs
		if ( empty( $ids ) ) {
			return;
		}
		foreach ( $ids as $id ) {
			switch ( $this->current_action() ) {
				case 'delete':
					edd_delete_discount( $id );
					break;
				case 'cancel':
					edd_update_discount_status( $id, 'cancelled' );
					break;
				case 'activate':
					edd_update_discount_status( $id, 'active' );
					break;
				case 'deactivate':
					edd_update_discount_status( $id, 'inactive' );
					break;
			}
		}
	}
	/**
	 * Retrieve the discount code counts.
	 *
	 * @since 1.4
	 */
	public function get_counts() {
		$this->counts = edd_get_discount_counts();
	}
	/**
	 * Retrieves all the data for all the discount codes.
	 *
	 * @since 1.4
	 * @deprecated 3.0 Use get_data()
	 *
	 * @return array Discount codes.
	 */
	public function discount_codes_data() {
		_edd_deprecated_function( __METHOD__, '3.0', 'EDD_Discount_Codes_Table::get_data()' );
		return $this->get_data();
	}
	/**
	 * Retrieves all of the table data for the discount codes.
	 *
	 * @since 3.0
	 *
	 * @return array Discount codes table data.
	 */
	public function get_data() {
		// Parse pagination
		$this->args = $this->parse_pagination_args( array(
			'status' => $this->get_status(),
			'search' => $this->get_search(),
		) );
		// Return data
		return edd_get_discounts( $this->args );
	}
	/**
	 * Setup the final data for the table
	 *
	 * @since 1.4
	 */
	public function prepare_items() {
		$columns  = $this->get_columns();
		$hidden   = array();
		$sortable = $this->get_sortable_columns();
		$this->_column_headers = array( $columns, $hidden, $sortable );
		$this->items           = $this->get_data();
		$status = $this->get_status( 'total' );
		// Setup pagination
		$this->set_pagination_args( array(
			'total_pages' => ceil( $this->counts[ $status ] / $this->per_page ),
			'total_items' => $this->counts[ $status ],
			'per_page'    => $this->per_page,
		) );
	}
}