Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.7.0
- * @ Author : DeZender
- * @ Release on : 22.06.2017
- * @ Official site : http://DeZender.Net
- *
- */
- namespace Blesta\System\BALicense;
- class Licensing
- {
- /**
- * @var string The path
- */
- private $path = null;
- /**
- * @var string The key_name
- */
- private $key_name = null;
- /**
- * @var string The license key
- */
- private $license_key = null;
- /**
- * @var string The public key
- */
- private $public_key = null;
- /**
- * Initializes the license class
- *
- * @param string $path The full path to plugin/module
- */
- public function __construct($path = NULL)
- {
- if (is_null( $path )) {
- throw new Exception( 'The License Class has been failed ...!!!' );
- }
- $this->path = $path;
- Loader::loadComponents( $this, array( 'Input' ) );
- .................................................................
- .................................
- ...............
Advertisement
Add Comment
Please, Sign In to add comment