ActionScheduler_Abstract_ListTable::column_default()
Default column formatting, it will escape everything for security.
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Return
String
.
Usage
$ActionScheduler_Abstract_ListTable = new ActionScheduler_Abstract_ListTable(); $ActionScheduler_Abstract_ListTable->column_default( $item, $column_name );
- $item(array) (required)
- The item array.
- $column_name(string) (required)
- Column name to display.
ActionScheduler_Abstract_ListTable::column_default() ActionScheduler Abstract ListTable::column default code WC 9.3.3
public function column_default( $item, $column_name ) { $column_html = esc_html( $item[ $column_name ] ); $column_html .= $this->maybe_render_actions( $item, $column_name ); return $column_html; }