public function CommerceLicenseRemoteBase::expire in Commerce License 7
Overrides CommerceLicenseBase::expire().
Overrides CommerceLicenseBase::expire
File
- includes/
plugins/ license_type/ base.inc, line 489 - Abstract and interface plugin implementation.
Class
- CommerceLicenseRemoteBase
- Remote license base class.
Code
public function expire($sync = TRUE) {
if ($sync) {
$this->wrapper->sync_status = COMMERCE_LICENSE_NEEDS_SYNC;
}
$this->wrapper->status = COMMERCE_LICENSE_EXPIRED;
$this
->save();
}