%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/businessmultisite/wp-content/plugins/admin-columns-pro/classes/
Upload File :
Create Path :
Current File : /var/www/businessmultisite/wp-content/plugins/admin-columns-pro/classes/LicenseKeyRepository.php

<?php

namespace ACP;

use AC\Storage\KeyValueFactory;
use AC\Storage\KeyValuePair;
use ACP\Type\Activation\Key;
use ACP\Type\LicenseKey;

class LicenseKeyRepository {

	/**
	 * @var KeyValuePair
	 */
	private $storage;

	public function __construct( KeyValueFactory $storage_factory ) {
		$this->storage = $storage_factory->create( 'acp_subscription_key' );
	}

	/**
	 * @return LicenseKey|null
	 */
	public function find() {
		$key = defined( 'ACP_LICENCE' ) && ACP_LICENCE
			? ACP_LICENCE
			: $this->get();

		if ( ! Key::is_valid( $key ) ) {
			return null;
		}

		$source = $this->is_defined()
			? LicenseKey::SOURCE_CODE
			: LicenseKey::SOURCE_DATABASE;

		return new LicenseKey( $key, $source );
	}

	private function is_defined() {
		return defined( 'ACP_LICENCE' ) && ACP_LICENCE;
	}

	private function get() {
		return $this->storage->get();
	}

	public function delete() {
		return $this->storage->delete();
	}

}

Zerion Mini Shell 1.0