ActionScheduler_ListTable::column_schedule
Prints the scheduled date in a human friendly format.
Метод класса: ActionScheduler_ListTable{}
Хуков нет.
Возвращает
string.
Использование
$ActionScheduler_ListTable = new ActionScheduler_ListTable(); $ActionScheduler_ListTable->column_schedule( $row );
- $row(массив) (обязательный)
- The array representation of the current row of the table.
Код ActionScheduler_ListTable::column_schedule() ActionScheduler ListTable::column schedule WC 11.1.1
public function column_schedule( $row ) {
return $this->get_schedule_display_string( $row['schedule'] );
}