ActionScheduler_Abstract_ListTable::prepare_column_headers
Prepares the _column_headers property which is used by WP_Table_List at rendering. It merges the columns and the sortable columns.
Метод класса: ActionScheduler_Abstract_ListTable{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_column_headers();
Код ActionScheduler_Abstract_ListTable::prepare_column_headers() ActionScheduler Abstract ListTable::prepare column headers WC 11.0.1
protected function prepare_column_headers() {
$this->_column_headers = array(
$this->get_columns(),
get_hidden_columns( $this->screen ),
$this->get_sortable_columns(),
);
}