WC_Webhook_Data_Store::get_webhook_count
Count webhooks.
Method of the class: WC_Webhook_Data_Store{}
No Hooks.
Returns
Int.
Usage
// protected - for code of main (parent) or child class $result = $this->get_webhook_count( $status );
- $status(string)
- Status to count.
Default: 'active'
Changelog
| Since 3.6.0 | Introduced. |
WC_Webhook_Data_Store::get_webhook_count() WC Webhook Data Store::get webhook count code WC 10.4.3
protected function get_webhook_count( $status = 'active' ) {
global $wpdb;
$cache_key = WC_Cache_Helper::get_cache_prefix( 'webhooks' ) . $status . '_count';
$count = wp_cache_get( $cache_key, 'webhooks' );
if ( false === $count ) {
$count = absint( $wpdb->get_var( $wpdb->prepare( "SELECT count( webhook_id ) FROM {$wpdb->prefix}wc_webhooks WHERE `status` = %s;", $status ) ) );
wp_cache_add( $cache_key, $count, 'webhooks' );
}
return $count;
}