Evan.Ferroli
Member
Hello ,
I need to add a license system for my add-on for avoir share and i just need to add this on my add-on :
But i really dont know how to integrate this on my addon.
I just want it to display an error message like Your license is invalid, please contact support.
Thank in advance for your help and sorry for my bad english xD
I need to add a license system for my add-on for avoir share and i just need to add this on my add-on :
PHP:
require_once '../test.php';
$api = new LicenseBoxAPI();
$res = $api->verify_license();
if($res['status']!=true){
die('Your license is invalid, please contact support.');
}
I just want it to display an error message like Your license is invalid, please contact support.
Thank in advance for your help and sorry for my bad english xD
Last edited: