· 6 years ago · Jun 28, 2019, 10:30 AM
1 * @author Andrea Grillo <andrea.grillo@yithemes.com>
2 */
3 public function register( $init, $secret_key, $product_id ){
4 if( ! function_exists( 'YITH_Plugin_Licence' ) ){
5 //Try to load YITH_Plugin_Licence class
6 yith_plugin_fw_load_update_and_licence_files();
7 }
8
9 try {
10 YITH_Plugin_Licence()->register( $init, $secret_key, $product_id );
11 } catch( Error $e ){
12 }
13 }
14
15 /**