File "woof_pds_cpt.php"

Full Path: /home/vantageo/public_html/cache/cache/.wp-cli/wp-content/plugins/woocommerce-products-filter/ext/meta_filter/classes/woof_pds_cpt.php
File size: 405 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if (!defined('ABSPATH'))
    die('No direct access allowed');

//for woof_meta_get_keys method
//another way is copy/paste!
class WOOF_PDS_CPT extends WC_Product_Data_Store_CPT {

    public function get_internal_meta_keys() {
        $exception = array('_height', '_width', '_length', '_weight', 'total_sales', '_stock');
        return array_diff($this->internal_meta_keys, $exception);
    }

}