當前位置: 首頁>>代碼示例>>PHP>>正文


PHP XLite::getXCNLicense方法代碼示例

本文整理匯總了PHP中XLite::getXCNLicense方法的典型用法代碼示例。如果您正苦於以下問題:PHP XLite::getXCNLicense方法的具體用法?PHP XLite::getXCNLicense怎麽用?PHP XLite::getXCNLicense使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XLite的用法示例。


在下文中一共展示了XLite::getXCNLicense方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getEditionName

 /**
  * Alias
  *
  * @return string
  */
 protected function getEditionName()
 {
     $result = 'Trial';
     $license = \XLite::getXCNLicense();
     if ($license && ($keyData = $license->getKeyData()) && !empty($keyData['editionName'])) {
         if (!is_array($keyData)) {
             $keyData = unserialize($keyData);
         }
         if (isset($keyData['editionName'])) {
             $result = $keyData['editionName'];
         }
     }
     return $result;
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:19,代碼來源:CoreVersion.php

示例2: isValidXCNLicense

 /**
  * Return true if XCN license exists and is valid
  *
  * @return boolean
  */
 protected function isValidXCNLicense()
 {
     $result = false;
     $license = \XLite::getXCNLicense();
     if ($license) {
         $keyData = $license->getKeyData();
         $result = empty($keyData['message']);
     }
     return $result;
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:15,代碼來源:Upgrade.php

示例3: isRequestForUpgradeAvailable

 /**
  * Check for request for upgrade availability
  *
  * @return boolean
  */
 protected function isRequestForUpgradeAvailable()
 {
     $result = false;
     if (\XLite\Upgrade\Cell::getInstance()->hasCoreUpdate() && \XLite::getXCNLicense()) {
         foreach ($this->getIncompatibleEntries() as $module) {
             if (!$module->isCustom()) {
                 $result = true;
                 break;
             }
         }
     }
     return $result;
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:18,代碼來源:IncompatibleEntries.php

示例4: checkACL

 /**
  * Check ACL permissions
  *
  * @return boolean
  */
 public function checkACL()
 {
     return parent::checkACL() && !(bool) \XLite::getXCNLicense();
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:9,代碼來源:ActivateFreeLicense.php

示例5: hasLicense

 /**
  * Check if the store has any license
  *
  * @return boolean
  */
 protected function hasLicense()
 {
     return (bool) \XLite::getXCNLicense();
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:9,代碼來源:AView.php

示例6: showXCNModuleNotice

 /**
  * Check if the XC module notice must be displayed.
  * The notice is displayed when the module is a part of X-Cart 5 license
  * and current X-Cart 5 license type of core differs from X-Cart 5 license type of module.
  *
  * @param \XLite\Model\Module $module Module entity
  *
  * @return boolean
  */
 protected function showXCNModuleNotice(\XLite\Model\Module $module)
 {
     $marketplaceModule = \XLite\Core\Database::getRepo('XLite\\Model\\Module')->findOneBy(array('name' => $module->getName(), 'author' => $module->getAuthor(), 'fromMarketplace' => true));
     return $marketplaceModule && (bool) \XLite::getXCNLicense() && $this->isXCN($marketplaceModule) && !$module->getEnabled() && 1 < $marketplaceModule->getEditionState();
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:14,代碼來源:Manage.php

示例7: getLicenseMessage

 /**
  * License info
  *
  * @return string
  */
 protected function getLicenseMessage()
 {
     $key = \XLite::getXCNLicense();
     if ($key) {
         $keyData = $key->getKeyData();
     }
     return $key ? 'License: ' . $keyData['editionName'] : static::t('License: trial version');
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:13,代碼來源:Version.php

示例8: isVisible

 /**
  * Button is visible only if license was not activated
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && !\XLite::getXCNLicense();
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:9,代碼來源:ActivateLicenseKey.php

示例9: isNoticeActive

 /**
  * Check if notice should be displayed in the header
  *
  * @return boolean
  */
 protected function isNoticeActive()
 {
     return !\XLite::getXCNLicense();
 }
開發者ID:kirkbauer2,項目名稱:kirkxc,代碼行數:9,代碼來源:ActivateTopBox.php


注:本文中的XLite::getXCNLicense方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。