|
__( 'Your license key is invalid.', 'meta-box' ),
'error' => __( 'Your license key is invalid.', 'meta-box' ),
'expired' => __( 'Your license key is expired.', 'meta-box' ),
'active' => __( 'Your license key is active.', 'meta-box' ),
];
$status = $this->option->get_license_status();
$api_key = 'active' === $status ? $this->fake_api_key : $this->option->get( 'api_key' );
?>
|