'', ]; return $columns; } /** * Renders the inside column responsive. * * @since 2.0.0 * * @param object $item The item being rendered. * @return void */ public function column_responsive($item): void { echo wu_responsive_table_row( [ 'id' => $item->get_id(), 'title' => $item->get_hash(), 'url' => wu_network_admin_url( 'wp-ultimo-edit-payment', [ 'id' => $item->get_id(), ] ), 'status' => $this->column_status($item), ], [ 'total' => [ 'icon' => 'dashicons-wu-shopping-bag1 wu-align-middle wu-mr-1', 'label' => __('Payment Total', 'wp-ultimo'), 'value' => wu_format_currency($item->get_total()), ], 'gateway' => [ 'icon' => 'dashicons-wu-credit-card2 wu-align-middle wu-mr-1', 'label' => __('Gateway', 'wp-ultimo'), 'value' => wu_slug_to_name($item->get_gateway()), ], ], [ 'date_created' => [ 'icon' => 'dashicons-wu-calendar1 wu-align-middle wu-mr-1', 'label' => '', 'value' => sprintf(__('Created %s', 'wp-ultimo'), wu_human_time_diff(strtotime((string) $item->get_date_created()))), ], ] ); } }