'product', 'plural' => 'products', 'ajax' => false, ) ); } /** * Defines the columns to use in your listing table * * @return array */ public function manage_columns() { // Columns for admin list table. $columns = array( 'thumb' => '' . __( 'Image', 'woocommerce-direct-links' ) . '', 'post_title' => __( 'Product Name', 'woocommerce-direct-links' ), 'sku' => __( 'SKU', 'woocommerce-direct-links' ), 'attrib' => __( 'Attributes', 'woocommerce-direct-links' ), 'category' => __( 'Category', 'woocomerce-direct-links' ), 'guid' => __( 'Add to Cart Link', 'woocommerce-direct-links' ), 'copy' => __( 'Copy Link', 'woocommerce-direct-links' ), 'refresh' => __( 'Refresh Link', 'woocommerce-direct-links' ), ); // remove category column for metabox list table. if ( 'product' === $this->screen->id ) { array_splice( $columns, 4, 1 ); } return $columns; } /** * Override the parent columns method for screen options columns. * * @return Array */ public function get_columns() { // Columns for screen options. $columns = array( 'thumb' => __( 'Thumbnail', 'woocommerce-direct-links' ), 'sku' => __( 'SKU', 'woocommerce-direct-links' ), 'attrib' => __( 'Attributes', 'woocommerce-direct-links' ), 'category' => __( 'Category', 'woocomerce-direct-links' ), ); return $columns; } /** * Define which columns are hidden * * @return Array */ public function get_hidden_columns() { return array(); } /** * Define what data to show on each column of the table * * @param Array $item Data. * @param String $column_name Current column name. * * @return Mixed */ public function column_default( $item, $column_name ) { switch ( $column_name ) { case 'sku': case 'attrib': case 'thumb': case 'category': return $item[ $column_name ]; default: return print_r( $item, true ); } } /** * Prepare the items for the table to process * * @return void */ public function prepare_items() { $search = ''; $category = ''; $primary = 'post_title'; $columns = $this->manage_columns(); $sortable = $this->get_sortable_columns(); $get_hidden_columns = $this->get_hidden_columns(); $get_hidden_options = get_user_option( 'manage' . $this->screen->id . 'columnshidden' ); $hidden = is_array( $get_hidden_options ) ? $get_hidden_options : $get_hidden_columns; if ( isset( $_GET['s'] ) ) { $search = sanitize_text_field( wp_unslash( $_GET['s'] ) ); } if ( isset( $_GET['product_cat'] ) ) { $category = sanitize_text_field( wp_unslash( $_GET['product_cat'] ) ); } $data = $this->get_data( $search, $category ); usort( $data, array( &$this, 'sort_data' ) ); $per_page = get_user_meta( get_current_user_id(), 'cklph_wdl_per_page', true ); if ( empty( $per_page ) ) { $per_page = $this->screen->get_option( 'per_page', 'default' ); } $current_page = $this->get_pagenum(); $total_items = count( $data ); $this->set_pagination_args( array( 'total_items' => $total_items, 'per_page' => $per_page, ) ); $data = array_slice( $data, ( ( $current_page - 1 ) * $per_page ), $per_page ); $this->_column_headers = array( $columns, $hidden, $sortable, $primary ); if ( 'product' === $this->screen->id ) { $this->_column_headers = array( $columns, $hidden, $sortable, $primary ); } $this->items = $data; } /** * Retrieves product data. Inlcudes search and filter functions * * @param string $search search filter. * @param string $category category filter. * @return Array */ public function get_data( $search = '', $category = '' ) { $wc_products = new Cklph_Wdl_Wc_Products(); $productlist = array(); if ( isset( $search ) ) { $args = array( 'status' => 'publish', 'limit' => -1, 'orderby' => 'title', 'order' => 'ASC', 'type' => array( 'simple', 'variable', 'subscription', 'variable-subscription' ), 's' => $search, 'meta_query' => array( array( 'key' => '_sku', 'value' => $search, 'compare' => 'LIKE', ), array( 'key' => '_title', 'value' => $search, 'compare' => 'LIKE', ), ), ); } else { $args = array( 'status' => 'publish', 'orderby' => 'title', 'order' => 'ASC', 'limit' => -1, 'type' => array( 'simple', 'variable', 'subscription', 'variable-subscription' ), ); } if ( isset( $category ) ) { $args['category'] = $category; } if ( 'toplevel_page_cklph-wdl-admin' === $this->screen->id && is_admin() ) { $productlist = $wc_products->get_all_wc_products_data( $args ); } else { $productlist = $wc_products->get_metabox_product_data(); } return $productlist; } /** * Custom row display for Post title * * @param int $item item data. * @return String */ protected function column_post_title( $item ) { $item_id = $item['ID']; $item_guid = $item['guid']; $item_title = $item['post_title']; // Only shows the id / variation id as actions in meta box. if ( 'product' === $this->screen->id ) { $actions = array( 'ID' => sprintf( '%s: %s', __( 'ID', 'woocommerce-direct-links' ), esc_attr( $item_id ) ), ); if ( isset( $item['variation_id'] ) ) { array_splice( $actions, 1, 0, array( 'variation_id' => sprintf( '%s: %s', __( 'Variation ID', 'woocommerce-direct-links' ), esc_attr( $item['variation_id'] ) ), ) ); } } else { $actions = array( 'ID' => sprintf( '%s: %s', __( 'ID', 'woocommerce-direct-links' ), esc_attr( $item_id ) ), 'edit' => sprintf( '%s', esc_attr( get_edit_post_link( $item_id ) ), __( 'Edit', 'woocommerce-direct-links' ) ), 'view' => sprintf( '%s', esc_attr( $item_guid ), __( 'View', 'woocommerce-direct-links' ) ), ); if ( isset( $item['variation_id'] ) ) { array_splice( $actions, 1, 0, array( 'variation_id' => sprintf( '%s: %s', __( 'Variation ID', 'woocommerce-direct-links' ), esc_attr( $item['variation_id'] ) ), ) ); } } return sprintf( '%2$s%3$s', esc_attr( $item_guid ), esc_attr( $item_title ), $this->row_actions( $actions ) ); } /** * Custom row display for Copy column. Prints the copy button * * @param int $item item data. * @return String */ protected function column_copy( $item ) { $id = array_key_exists( 'variation_id', $item ) ? $item['variation_id'] : $item['ID']; return sprintf( '