Ejemplo n.º 1
0
 public function getModuleLicenseUpgradeLink(Aitoc_Aitsys_Model_Module $module, $onlyUrl = true)
 {
     if ($license = $module->getLicense()) {
         $licenseId = $license->getLicenseId();
     } else {
         return '';
     }
     $url = $module->getStoreUrl() . 'aitcprod/license/upgrade/license_id/' . $licenseId;
     if ($onlyUrl) {
         return $url;
     }
     return '<a target="_blank" href="' . $url . '">' . $this->__('Buy license upgrade') . '</a>';
 }