Jelix\Installer\EntryPoint::getAppInfos PHP Method

getAppInfos() public method

public getAppInfos ( ) : Jelix\Core\Infos\AppInfos
return Jelix\Core\Infos\AppInfos
    public function getAppInfos()
    {
        return $this->appInfos;
    }

Usage Example

Ejemplo n.º 1
0
 protected function declareNewEntryPoint($epId, $epType, $configFileName)
 {
     if (!$this->firstExec('EP_' . $epId)) {
         return;
     }
     $mapModifier = $this->entryPoint->getUrlMap()->getMapModifier();
     $mapModifier->addEntryPoint($epId, $epType);
     $this->entryPoint->getAppInfos()->addEntryPointInfo($epId . '.php', $configFileName, $epType);
 }