WP_Application_Passwords_List_Table::column_default() – Generates content for a single row of the table

You appear to be a bot. Output may be restricted

Description

Generates content for a single row of the table

Usage

WP_Application_Passwords_List_Table::column_default( $item, $column_name );

Parameters

$item
( array ) required – The current item.
$column_name
( string ) required – The current column name.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-application-passwords-list-table.php
Lines:

1 to 13 of 13
  protected function column_default( $item, $column_name ) {
    
/**
 * Fires for each custom column in the Application Passwords list table.
 *
 * Custom columns are registered using the {@see 'manage_application-passwords-user_columns'} filter.
 *
 * @since 5.6.0
 *
 * @param string $column_name Name of the custom column.
 * @param array  $item        The application password item.
 */
    do_action( "manage_{$this->screen->id}_custom_column", $column_name, $item );
  }
 

 View on GitHub View on Trac