예제 #1
0
파일: Module.php 프로젝트: kewaunited/xcart
 /**
  * Check if module is already purchased
  *
  * @return boolean
  */
 public function isPurchased()
 {
     $xcnModulePlan = $this->getXcnPlan();
     return (bool) (static::NOT_XCN_MODULE == $xcnModulePlan ? $this->getLicenseKey() : $this->isAvailable() && $xcnModulePlan == \XLite::getXCNLicenseType());
 }