Question Php Functions to query a user License

Status
Not open for further replies.

Raiden

Customer
Hello,
I need to do users verification through PHP, so i'm asking what is the function I can use to query a user's license, so given his username or user_id and his licences_id, it returns if his licence is expired or still valid.

Thank you for your time.
 
PHP:
/** @var \DBTech\eCommerce\Entity\License $license */
$license = \XF::finder('DBTech\eCommerce:License')
    ->where('license_id', $licenseId)
    ->where('user_id', $userId)
    ->fetchOne()
;

If you'd rather user the license key, the column is license_key.
 
Is this return value a boolean, so I can check if false the license is expired?
PHP:
if(!$license)
    echo "License Expired";

Or maybe there is a function to get the exact value of date purchase, because from database I can see the date is crypted so cannot read it
 
Last edited:
The variable will be null if the license ID / license key / user ID combo is not valid.

Therefore the check would be if (!$license || !$license->isActive())
 
Hello @Raiden,

We hope your ticket regarding DragonByte eCommerce has been addressed to your satisfaction. This ticket has now been scheduled to be closed.

If your ticket has not been resolved, you can reply to this thread at any point in the next 7 days in order to reopen the ticket, afterwards this thread will be closed.

Please do not reply to this thread if your ticket has been resolved.

Thank you.


- DragonByte Technologies, Ltd.
 
Hello @Raiden,

As we have not heard back from you, your ticket regarding DragonByte eCommerce has now been closed.

If your ticket has not been resolved, please feel free to start a new support ticket and link back to this ticket.

If you have time, please leave a review on XenForo.com's Resource Manager.

Thank you.


- DragonByte Technologies, Ltd.
 
Status
Not open for further replies.

DragonByte eCommerce

XenForo 2.0.6+ XenForo 2.1.x XenForo 2.2.x XenForo 2.3.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
3,087
Customer rating
4.86 star(s) 7 ratings
Back
Top