ActionScheduler_ListTable::column_schedule()publicWC 1.0

Prints the scheduled date in a human friendly format.

Метод класса: ActionScheduler_ListTable{}

Хуков нет.

Возвращает

Строку.

Использование

$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() WC 8.7.0

public function column_schedule( $row ) {
	return $this->get_schedule_display_string( $row['schedule'] );
}