WC_Admin_Webhooks_Table_List::get_legacy_api_webhooks_count()
Get how many of the existing webhooks are configured to use the legacy payload format.
Метод класса: WC_Admin_Webhooks_Table_List{}
Хуков нет.
Возвращает
int
. Count of existing webhooks are configured to use the legacy payload format.
Использование
$WC_Admin_Webhooks_Table_List = new WC_Admin_Webhooks_Table_List(); $WC_Admin_Webhooks_Table_List->get_legacy_api_webhooks_count();
Список изменений
С версии 9.0.0 | Введена. |
Код WC_Admin_Webhooks_Table_List::get_legacy_api_webhooks_count() WC Admin Webhooks Table List::get legacy api webhooks count WC 9.3.3
public function get_legacy_api_webhooks_count() { return count( array_filter( $this->items, array( $this, 'uses_legacy_rest_api' ) ) ); }