LLMS_Add_On::get_license_status( bool $translate = false )

Determine the status of an addon’s license


Parameters Parameters

$translate

(bool) (Optional) If true, returns the translated string for on-screen display.

Default value: false


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/models/model.llms.add-on.php

243
244
245
246
247
248
249
250
251
252
253
public function get_license_status( $translate = false ) {
 
    if ( ! llms_parse_bool( $this->get( 'has_license' ) ) ) {
        $ret = 'none';
    } else {
        $ret = $this->is_licensed() ? 'license_active' : 'license_inactive';
    }
 
    return $translate ? $this->get_l10n( $ret ) : $ret;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.22.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.