__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Blocksy;
/**
* Manages Blocksy theme license.
*
* ## EXAMPLES
*
* # Activate license
* $ wp blocksy license activate your-license-key
*/
class LicenseCli {
public function __construct() {
\WP_CLI::add_command('blocksy license', $this);
}
/**
* Activate a license key.
*
* ## OPTIONS
*
* <key>
* : The license key to activate.
*
* ## EXAMPLES
*
* wp blocksy license activate your-license-key
*
* @subcommand activate
*/
public function license_activate($args, $assoc_args) {
$fs = blc_fs();
if (empty($fs)) {
\WP_CLI::error('Freemius instance not found.');
return;
}
if (false === $fs->has_api_connectivity()) {
\WP_CLI::error('No API connectivity.');
return;
}
if ($fs->is_registered()) {
\WP_CLI::warning('The user is already registered with Freemius.');
}
$key = $args[0];
try {
$next_page = $fs->activate_migrated_license($key);
} catch (Exception $e) {
\WP_CLI::error('Error: ' . $e->getMessage());
return;
}
if ($fs->can_use_premium_code()) {
\WP_CLI::success('License key activated successfully.');
} else {
\WP_CLI::error('License key activation failed.');
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| demo.php | File | 10.71 KB | 0775 |
|
| extension.php | File | 3.16 KB | 0775 |
|
| license.php | File | 1.18 KB | 0775 |
|
| tool.php | File | 2.01 KB | 0775 |
|
| widgets.php | File | 1.24 KB | 0775 |
|