/**
  * {@inheritDoc}
  */
 public function getHasLicense()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getHasLicense', array());
     return parent::getHasLicense();
 }
示例#2
0
 /**
  * Check module license and return true if it's non-empty
  *
  * @param \XLite\Model\Module $module Module
  *
  * @return boolean
  */
 protected function hasNonEmptyLicense(\XLite\Model\Module $module)
 {
     return $module->getHasLicense();
 }