WC_Admin_Webhooks_Table_List::get_columns
Get list columns.
Метод класса: WC_Admin_Webhooks_Table_List{}
Хуков нет.
Возвращает
Массив.
Использование
$WC_Admin_Webhooks_Table_List = new WC_Admin_Webhooks_Table_List(); $WC_Admin_Webhooks_Table_List->get_columns();
Код WC_Admin_Webhooks_Table_List::get_columns() WC Admin Webhooks Table List::get columns WC 10.6.2
public function get_columns() {
return array(
'cb' => '<input type="checkbox" />',
'title' => __( 'Name', 'woocommerce' ),
'status' => __( 'Status', 'woocommerce' ),
'topic' => __( 'Topic', 'woocommerce' ),
'delivery_url' => __( 'Delivery URL', 'woocommerce' ),
);
}