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