Jelix\Installer\AbstractInstaller::setEntryPoint PHP Метод

setEntryPoint() публичный Метод

is called to indicate that the installer will be called for the given configuration, entry point and db profile.
public setEntryPoint ( EntryPoint $ep, string $dbProfile, array $contexts )
$ep EntryPoint the entry point
$dbProfile string the name of the current jdb profile. It will be replaced by $defaultDbProfile if it exists
$contexts array list of contexts already executed
    public function setEntryPoint($ep, $dbProfile, $contexts)
    {
        $this->entryPoint = $ep;
        $this->config = $ep->getConfigIni();
        $this->contextId = $contexts;
        $this->newContextId = array();
        if ($this->defaultDbProfile != '') {
            $this->useDbProfile($this->defaultDbProfile);
        } else {
            $this->useDbProfile($dbProfile);
        }
    }