Elcodi\Store\GeoBundle\Controller\LocationController::showCitySelectorAction PHP Метод

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

Show the city selectors
public showCitySelectorAction ( string $locationId ) : Response
$locationId string The location id
Результат Symfony\Component\HttpFoundation\Response
    public function showCitySelectorAction($locationId)
    {
        $selects = $this->get('elcodi_store.form.location_selector_builder')->getSelects($locationId, $this->maxLocationType);
        return $this->renderTemplate('Subpages:location-selector.html.twig', ['selects' => $selects, 'maxLocationType' => $this->maxLocationType]);
    }
LocationController