modes = array( 'grid' => __('Grid View'), ); $this->current_mode = 'grid'; } /** * Returns the list of columns for this particular List Table. * * @since 2.0.0 * @return array */ public function get_columns() { return array(); } /** * Clears filters. * * @since 2.0.0 */ public function get_filters(): array { return array( 'filters' => array(), 'date_filters' => array(), ); } /** * Clears views. * * @since 2.0.0 * @return array */ public function get_views() { return array( 'all' => array( 'field' => 'type', 'url' => add_query_arg('type', 'all'), 'label' => __('Your Sites', 'wp-ultimo'), 'count' => 0, ), ); } /** * Get the extra fields based on the request. * * @since 2.0.0 * @return array */ public function get_extra_fields() { $customer = wu_get_current_customer(); if ( ! $customer) { return array( 'blog_id__in' => array('null_id'), // pass absurd value to make sure the query returns nothing. ); } $fields = parent::get_extra_fields(); $fields = array( 'meta_query' => array( 'customer_id' => array( 'key' => 'wu_customer_id', 'value' => $customer->get_id(), ), ), ); return $fields; } }