function wpai_woocommerce_add_on_updater()
 {
     // retrieve our license key from the DB
     $wpai_woocommerce_addon_options = get_option('PMXI_Plugin_Options');
     if (!empty($wpai_woocommerce_addon_options['info_api_url'])) {
         // setup the updater
         $updater = new PMWI_Updater($wpai_woocommerce_addon_options['info_api_url'], __FILE__, array('version' => PMWI_VERSION, 'license' => false, 'item_name' => PMWI_Plugin::getEddName(), 'author' => 'Soflyy'));
     }
 }