165 lines
3.8 KiB
PHP
165 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* Payment List Table class.
|
|
*
|
|
* @package WP_Ultimo
|
|
* @subpackage List_Table
|
|
* @since 2.0.0
|
|
*/
|
|
|
|
namespace WP_Ultimo\List_Tables;
|
|
|
|
// Exit if accessed directly
|
|
defined('ABSPATH') || exit;
|
|
|
|
/**
|
|
* Payment List Table class.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
class Membership_Line_Item_List_Table extends Product_List_Table {
|
|
|
|
/**
|
|
* Returns the list of columns for this particular List Table.
|
|
*
|
|
* @since 2.0.0
|
|
* @return array
|
|
*/
|
|
public function get_columns() {
|
|
|
|
$columns = array(
|
|
'responsive' => '',
|
|
);
|
|
|
|
return $columns;
|
|
|
|
} // end get_columns;
|
|
|
|
/**
|
|
* Overrides the parent get_items to add a total line.
|
|
*
|
|
* @since 2.0.0
|
|
*
|
|
* @param integer $per_page Items per page. This gets overridden as well.
|
|
* @param integer $page_number The page number.
|
|
* @param boolean $count Return as count or not.
|
|
* @return array
|
|
*/
|
|
public function get_items($per_page = 5, $page_number = 1, $count = false) {
|
|
|
|
$membership = wu_get_membership(wu_request('id'));
|
|
|
|
$products = $membership->get_all_products();
|
|
|
|
if ($count) {
|
|
|
|
return count($products);
|
|
|
|
} // end if;
|
|
|
|
return $products;
|
|
|
|
} // end get_items;
|
|
|
|
/**
|
|
* Renders the inside column responsive.
|
|
*
|
|
* @since 2.0.0
|
|
*
|
|
* @param object $item The item being rendered.
|
|
* @return void
|
|
*/
|
|
public function column_responsive($item) {
|
|
|
|
$quantity = $item['quantity'];
|
|
|
|
$membership_id = wu_request('id');
|
|
|
|
$item = $item['product'];
|
|
|
|
if (!$item) {
|
|
|
|
echo wu_responsive_table_row(array(
|
|
'url' => false,
|
|
'id' => 'not-found',
|
|
'title' => __('Product not found', 'wp-ultimo'),
|
|
'status' => '',
|
|
'image' => $this->column_featured_image_id(new \WP_Ultimo\Models\Product()),
|
|
), array(
|
|
'quantity' => array(
|
|
'icon' => 'dashicons-wu-package wu-align-middle wu-mr-1',
|
|
'label' => __('Quantity', 'wp-ultimo'),
|
|
'value' => sprintf(__('x%d', 'wp-ultimo'), $quantity),
|
|
),
|
|
));
|
|
|
|
return;
|
|
|
|
} // end if;
|
|
|
|
$first_row = array(
|
|
'quantity' => array(
|
|
'icon' => 'dashicons-wu-package wu-align-middle wu-mr-1',
|
|
'label' => __('Quantity', 'wp-ultimo'),
|
|
'value' => sprintf(__('x%d', 'wp-ultimo'), $quantity),
|
|
),
|
|
'total' => array(
|
|
'icon' => 'dashicons-wu-shopping-bag1 wu-align-middle wu-mr-1',
|
|
'label' => __('Price description', 'wp-ultimo'),
|
|
'value' => $item->get_price_description(),
|
|
),
|
|
);
|
|
|
|
$second_row = array(
|
|
'slug' => array(
|
|
'icon' => 'dashicons-wu-bookmark1 wu-align-middle wu-mr-1',
|
|
'label' => __('Product Slug', 'wp-ultimo'),
|
|
'value' => $item->get_slug(),
|
|
),
|
|
);
|
|
|
|
if ($item->get_type() === 'plan') {
|
|
|
|
$first_row['change'] = array(
|
|
'wrapper_classes' => 'wubox',
|
|
'icon' => 'dashicons-wu-edit1 wu-align-middle wu-mr-1',
|
|
'label' => '',
|
|
'value' => __('Upgrade or Downgrade', 'wp-ultimo'),
|
|
'url' => wu_get_form_url('change_membership_plan', array(
|
|
'id' => $membership_id,
|
|
'product_id' => $item->get_id(),
|
|
)),
|
|
);
|
|
|
|
} else {
|
|
|
|
$first_row['remove'] = array(
|
|
'wrapper_classes' => 'wu-text-red-500 wubox',
|
|
'icon' => 'dashicons-wu-trash-2 wu-align-middle wu-mr-1',
|
|
'label' => '',
|
|
'value' => __('Remove', 'wp-ultimo'),
|
|
'url' => wu_get_form_url('remove_membership_product', array(
|
|
'id' => $membership_id,
|
|
'product_id' => $item->get_id(),
|
|
)),
|
|
);
|
|
|
|
} // end if;
|
|
|
|
echo wu_responsive_table_row(array(
|
|
'id' => $item->get_id(),
|
|
'title' => $item->get_name(),
|
|
'url' => wu_network_admin_url('wp-ultimo-edit-product', array(
|
|
'id' => $item->get_id(),
|
|
)),
|
|
'image' => $this->column_featured_image_id($item),
|
|
'status' => $this->column_type($item),
|
|
),
|
|
$first_row,
|
|
$second_row
|
|
);
|
|
|
|
} // end column_responsive;
|
|
|
|
} // end class Membership_Line_Item_List_Table;
|