Jelix\Installer\EntryPoint::getUrlMap PHP Method

getUrlMap() public method

public getUrlMap ( )
    public function getUrlMap()
    {
        return $this->urlMap;
    }

Usage Example

Beispiel #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);
 }