ActionScheduler_Abstract_ListTable::get_columns()
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() ActionScheduler Abstract ListTable::get columns WC 9.5.1
public function get_columns() { $columns = array_merge( array( 'cb' => '<input type="checkbox" />' ), $this->columns ); return $columns; }