__( 'Stock', 'woocommerce' ), 'plural' => __( 'Stock', 'woocommerce' ), 'ajax' => false ) ); } /** * No items found text */ public function no_items() { _e( 'No products found.', 'woocommerce' ); } /** * Don't need this */ public function display_tablenav( $position ) { if ( $position != 'top' ) parent::display_tablenav( $position ); } /** * Output the report */ public function output_report() { $this->prepare_items(); echo '
'; $this->display(); echo '
'; } /** * column_default function. * * @access public * @param mixed $item * @param mixed $column_name */ function column_default( $item, $column_name ) { global $woocommerce, $wpdb, $product; if ( ! $product || $product->id !== $item->id ) $product = get_product( $item->id ); switch( $column_name ) { case 'product' : if ( $sku = $product->get_sku() ) echo $sku . ' - '; echo $product->get_title(); // Get variation data if ( $product->is_type( 'variation' ) ) { $list_attributes = array(); $attributes = $product->get_variation_attributes(); foreach ( $attributes as $name => $attribute ) { $list_attributes[] = $woocommerce->get_helper( 'attribute' )->attribute_label( str_replace( 'attribute_', '', $name ) ) . ': ' . $attribute . ''; } echo '
' . implode( ', ', $list_attributes ) . '
'; } break; case 'parent' : if ( $item->parent ) echo get_the_title( $item->parent ); else echo '-'; break; case 'stock_status' : if ( $product->is_in_stock() ) { echo '' . __( 'In stock', 'woocommerce' ) . ''; } else { echo '' . __( 'Out of stock', 'woocommerce' ) . ''; } break; case 'stock_level' : echo $product->get_stock_quantity(); break; case 'wc_actions' : ?>

is_type( 'variation' ) ? $item->parent : $item->id; $actions['edit'] = array( 'url' => admin_url( 'post.php?post=' . $action_id . '&action=edit' ), 'name' => __( 'Edit', 'woocommerce' ), 'action' => "edit" ); if ( $product->is_visible() ) $actions['view'] = array( 'url' => get_permalink( $action_id ), 'name' => __( 'View', 'woocommerce' ), 'action' => "view" ); $actions = apply_filters( 'woocommerce_admin_stock_report_product_actions', $actions, $product ); foreach ( $actions as $action ) { $image = ( isset( $action['image_url'] ) ) ? $action['image_url'] : $woocommerce->plugin_url() . '/assets/images/icons/' . $action['action'] . '.png'; printf( '%s', esc_url( $action['url'] ), esc_attr( $action['name'] ), esc_attr( $image ), esc_attr( $action['name'] ) ); } ?>

__( 'Product', 'woocommerce' ), 'parent' => __( 'Parent', 'woocommerce' ), 'stock_level' => __( 'Units in stock', 'woocommerce' ), 'stock_status' => __( 'Stock status', 'woocommerce' ), 'wc_actions' => __( 'Actions', 'woocommerce' ), ); return $columns; } /** * prepare_items function. * * @access public */ public function prepare_items() { $this->_column_headers = array( $this->get_columns(), array(), $this->get_sortable_columns() ); $current_page = absint( $this->get_pagenum() ); $per_page = 20; $this->get_items( $current_page, $per_page ); /** * Pagination */ $this->set_pagination_args( array( 'total_items' => $this->max_items, 'per_page' => $per_page, 'total_pages' => ceil( $this->max_items / $per_page ) ) ); } }