/** * Register the singleton * * @return boolean */ protected function registerInstance() { self::$instance = $this; return true; }
* * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to support@give.it so we can send you a copy immediately. * * @author JSC INVERTUS www.invertus.lt <*****@*****.**> * @copyright 2013 Give.it * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of Give.it */ require_once 'sdk/sdk.php'; include_once dirname(__FILE__) . '/../../config/config.inc.php'; $sdk_version = GiveItSdk::VERSION; $module_instance = Module::getInstanceByName('giveit'); $module_version = $module_instance->version; $info = array('sdk' => $sdk_version, 'module' => $module_version, 'prestashop' => _PS_VERSION_, 'php' => phpversion(), 'php-sapi' => php_sapi_name()); $info = Tools::jsonEncode($info); $private_key = Configuration::get(GiveIt::PRIVATE_KEY); if (!$private_key) { die('ERROR: private key must be submitted.'); } $crypt = new GiveItSdkCrypt(); $info = $crypt->encode($info, $private_key); echo $info; exit;
/** * Generate Button HTML * * This function generates the necessary HTML to render the button. * */ public function getButtonHTML($button_type = 'blue_rect_sm') { if (!$this->validate()) { $this->addError('product data is invalid'); return $this->getErrorsHTML(); } $parent = GiveItSdk::getInstance(); $crypt = GiveItSdkCrypt::getInstance(); if ($parent == false) { $this->addError('SDK must be instantiated to render buttons'); return false; } $encrypted = $crypt->encode(Tools::jsonEncode($this->data), $parent->data_key); if ($encrypted == false) { if (!$this->render_errors) { return false; } $this->addError($crypt->errors()); return $this->getErrorsHTML(); } // $encrypted = urlencode($encrypted); $html = "<span class='giveit-button' data-giveit-buttontype='{$button_type}' data-giveit-data='{$encrypted}'></span>"; return $html; }
public function __construct() { $this->parent = GiveItSdk::getInstance(); $this->crypt = GiveItSdkCrypt::getInstance(); }