WP_Privacy_Requests_Table::get_columns() – Get columns to show in the list table.

You appear to be a bot. Output may be restricted

Description

Get columns to show in the list table.

Usage

$string[] = WP_Privacy_Requests_Table::get_columns();

Parameters

Returns

string[] Array of column titles keyed by their column name.

Source

File name: wordpress/wp-admin/includes/class-wp-privacy-requests-table.php
Lines:

1 to 10 of 10
  public function get_columns() {
    $columns = array(
      'cb'                => '<input type="checkbox" />',
      'email'             => __( 'Requester' ),
      'status'            => __( 'Status' ),
      'created_timestamp' => __( 'Requested' ),
      'next_steps'        => __( 'Next steps' ),
    );
    return $columns;
  }
 

 View on GitHub View on Trac