Inventory_Presser_Carfax_Widget::__construct()
Calls the parent class’ contructor and adds a hook that will delete the option that stores this widget’s data when the plugin’s delete all data method is run.
Return Return
(void)
Source Source
File: includes/widget/class-widget-carfax.php
public function __construct() {
parent::__construct(
self::ID_BASE,
'Carfax Badge',
array(
'description' => __( 'Choose a Carfax badge that links to your inventory.', 'inventory-presser' ),
'show_instance_in_rest' => true,
)
);
add_action( 'invp_delete_all_data', array( $this, 'delete_option' ) );
}
Expand full source codeCollapse full source codeView on Github