BP_Messages_Notices_List_Table::get_columns()

Get a list of columns. The format is: ‘internal-name’ => ‘Title’


Description Description


Return Return

(array)


Top ↑

Source Source

File: bp-messages/classes/class-bp-messages-notices-list-table.php

	public function get_columns() {
		return apply_filters( 'bp_notices_list_table_get_columns', array(
			'subject'   => _x( 'Subject', 'Admin Notices column header', 'buddypress' ),
			'message'   => _x( 'Content', 'Admin Notices column header', 'buddypress' ),
			'date_sent' => _x( 'Created', 'Admin Notices column header', 'buddypress' ),
		) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.