WC_Admin_Webhooks_Table_List::__construct
Initialize the webhook table list.
Method of the class: WC_Admin_Webhooks_Table_List{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Admin_Webhooks_Table_List = new WC_Admin_Webhooks_Table_List(); $WC_Admin_Webhooks_Table_List->__construct();
WC_Admin_Webhooks_Table_List::__construct() WC Admin Webhooks Table List:: construct code WC 10.4.3
public function __construct() {
parent::__construct(
array(
'singular' => 'webhook',
'plural' => 'webhooks',
'ajax' => false,
)
);
}