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

Метод класса: ActionScheduler_Abstract_ListTable{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Код ActionScheduler_Abstract_ListTable::get_columns() WC 8.7.0

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

	return $columns;
}