ActionScheduler_Abstract_ListTable::get_columns()publicWC 1.0

Returns the columns names for rendering. It adds a checkbox for selecting everything as the first column

Method of the class: ActionScheduler_Abstract_ListTable{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_Abstract_ListTable = new ActionScheduler_Abstract_ListTable();
$ActionScheduler_Abstract_ListTable->get_columns();

ActionScheduler_Abstract_ListTable::get_columns() code WC 8.6.1

public function get_columns() {
	$columns = array_merge(
		array( 'cb' => '<input type="checkbox" />' ),
		$this->columns
	);

	return $columns;
}