Example #1
0
 /**
  * Returns an array of \TYPO3\Flow\Package objects of all active packages.
  * A package is active, if it is available and has been activated in the package
  * manager settings. This method returns runtime activated packages too
  *
  * @return \TYPO3\Flow\Package\PackageInterface[]
  * @api
  */
 public function getActivePackages()
 {
     return array_merge(parent::getActivePackages(), $this->runtimeActivatedPackages);
 }