<?php
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\RequestContext;
/**
* This class has been auto-generated
* by the Symfony Routing Component.
*/
class appDevDebugProjectContainerUrlMatcher extends Symfony\Bundle\FrameworkBundle\Routing\RedirectableUrlMatcher
{
public function __construct(RequestContext $context)
{
$this->context = $context;
}
public function match($rawPathinfo)
{
$allow = [];
$pathinfo = rawurldecode($rawPathinfo);
$trimmedPathinfo = rtrim($pathinfo, '/');
$context = $this->context;
$request = $this->request ?: $this->createRequest($pathinfo);
$requestMethod = $canonicalMethod = $context->getMethod();
if ('HEAD' === $requestMethod) {
$canonicalMethod = 'GET';
}
if (0 === strpos($pathinfo, '/_')) {
// _wdt
if (0 === strpos($pathinfo, '/_wdt') && preg_match('#^/_wdt/(?P<token>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_wdt']), array ( '_controller' => 'web_profiler.controller.profiler:toolbarAction',));
}
if (0 === strpos($pathinfo, '/_profiler')) {
// _profiler_home
if ('/_profiler' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'web_profiler.controller.profiler:homeAction', '_route' => '_profiler_home',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not__profiler_home;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', '_profiler_home'));
}
return $ret;
}
not__profiler_home:
if (0 === strpos($pathinfo, '/_profiler/search')) {
// _profiler_search
if ('/_profiler/search' === $pathinfo) {
return array ( '_controller' => 'web_profiler.controller.profiler:searchAction', '_route' => '_profiler_search',);
}
// _profiler_search_bar
if ('/_profiler/search_bar' === $pathinfo) {
return array ( '_controller' => 'web_profiler.controller.profiler:searchBarAction', '_route' => '_profiler_search_bar',);
}
}
// _profiler_phpinfo
if ('/_profiler/phpinfo' === $pathinfo) {
return array ( '_controller' => 'web_profiler.controller.profiler:phpinfoAction', '_route' => '_profiler_phpinfo',);
}
// _profiler_search_results
if (preg_match('#^/_profiler/(?P<token>[^/]++)/search/results$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_search_results']), array ( '_controller' => 'web_profiler.controller.profiler:searchResultsAction',));
}
// _profiler_open_file
if ('/_profiler/open' === $pathinfo) {
return array ( '_controller' => 'web_profiler.controller.profiler:openAction', '_route' => '_profiler_open_file',);
}
// _profiler
if (preg_match('#^/_profiler/(?P<token>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler']), array ( '_controller' => 'web_profiler.controller.profiler:panelAction',));
}
// _profiler_router
if (preg_match('#^/_profiler/(?P<token>[^/]++)/router$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_router']), array ( '_controller' => 'web_profiler.controller.router:panelAction',));
}
// _profiler_exception
if (preg_match('#^/_profiler/(?P<token>[^/]++)/exception$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_exception']), array ( '_controller' => 'web_profiler.controller.exception:showAction',));
}
// _profiler_exception_css
if (preg_match('#^/_profiler/(?P<token>[^/]++)/exception\\.css$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_exception_css']), array ( '_controller' => 'web_profiler.controller.exception:cssAction',));
}
}
// _twig_error_test
if (0 === strpos($pathinfo, '/_error') && preg_match('#^/_error/(?P<code>\\d+)(?:\\.(?P<_format>[^/]++))?$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => '_twig_error_test']), array ( '_controller' => 'twig.controller.preview_error:previewErrorPageAction', '_format' => 'html',));
}
}
elseif (0 === strpos($pathinfo, '/login')) {
// fos_user_security_login
if ('/login' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.security.controller:loginAction', '_route' => 'fos_user_security_login',);
if (!in_array($canonicalMethod, ['GET', 'POST'])) {
$allow = array_merge($allow, ['GET', 'POST']);
goto not_fos_user_security_login;
}
return $ret;
}
not_fos_user_security_login:
// fos_user_security_check
if ('/login_check' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.security.controller:checkAction', '_route' => 'fos_user_security_check',);
if (!in_array($requestMethod, ['POST'])) {
$allow = array_merge($allow, ['POST']);
goto not_fos_user_security_check;
}
return $ret;
}
not_fos_user_security_check:
}
// fos_user_security_logout
if ('/logout' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.security.controller:logoutAction', '_route' => 'fos_user_security_logout',);
if (!in_array($canonicalMethod, ['GET', 'POST'])) {
$allow = array_merge($allow, ['GET', 'POST']);
goto not_fos_user_security_logout;
}
return $ret;
}
not_fos_user_security_logout:
if (0 === strpos($pathinfo, '/profile')) {
// fos_user_profile_show
if ('/profile' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'fos_user.profile.controller:showAction', '_route' => 'fos_user_profile_show',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_fos_user_profile_show;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'fos_user_profile_show'));
}
if (!in_array($canonicalMethod, ['GET'])) {
$allow = array_merge($allow, ['GET']);
goto not_fos_user_profile_show;
}
return $ret;
}
not_fos_user_profile_show:
// fos_user_profile_edit
if ('/profile/edit' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.profile.controller:editAction', '_route' => 'fos_user_profile_edit',);
if (!in_array($canonicalMethod, ['GET', 'POST'])) {
$allow = array_merge($allow, ['GET', 'POST']);
goto not_fos_user_profile_edit;
}
return $ret;
}
not_fos_user_profile_edit:
// fos_user_change_password
if ('/profile/change-password' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.change_password.controller:changePasswordAction', '_route' => 'fos_user_change_password',);
if (!in_array($canonicalMethod, ['GET', 'POST'])) {
$allow = array_merge($allow, ['GET', 'POST']);
goto not_fos_user_change_password;
}
return $ret;
}
not_fos_user_change_password:
}
elseif (0 === strpos($pathinfo, '/re')) {
if (0 === strpos($pathinfo, '/register')) {
// fos_user_registration_register
if ('/register' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'fos_user.registration.controller:registerAction', '_route' => 'fos_user_registration_register',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_fos_user_registration_register;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'fos_user_registration_register'));
}
if (!in_array($canonicalMethod, ['GET', 'POST'])) {
$allow = array_merge($allow, ['GET', 'POST']);
goto not_fos_user_registration_register;
}
return $ret;
}
not_fos_user_registration_register:
// fos_user_registration_check_email
if ('/register/check-email' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.registration.controller:checkEmailAction', '_route' => 'fos_user_registration_check_email',);
if (!in_array($canonicalMethod, ['GET'])) {
$allow = array_merge($allow, ['GET']);
goto not_fos_user_registration_check_email;
}
return $ret;
}
not_fos_user_registration_check_email:
if (0 === strpos($pathinfo, '/register/confirm')) {
// fos_user_registration_confirm
if (preg_match('#^/register/confirm/(?P<token>[^/]++)$#sD', $pathinfo, $matches)) {
$ret = $this->mergeDefaults(array_replace($matches, ['_route' => 'fos_user_registration_confirm']), array ( '_controller' => 'fos_user.registration.controller:confirmAction',));
if (!in_array($canonicalMethod, ['GET'])) {
$allow = array_merge($allow, ['GET']);
goto not_fos_user_registration_confirm;
}
return $ret;
}
not_fos_user_registration_confirm:
// fos_user_registration_confirmed
if ('/register/confirmed' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.registration.controller:confirmedAction', '_route' => 'fos_user_registration_confirmed',);
if (!in_array($canonicalMethod, ['GET'])) {
$allow = array_merge($allow, ['GET']);
goto not_fos_user_registration_confirmed;
}
return $ret;
}
not_fos_user_registration_confirmed:
}
}
elseif (0 === strpos($pathinfo, '/resetting')) {
// fos_user_resetting_request
if ('/resetting/request' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.resetting.controller:requestAction', '_route' => 'fos_user_resetting_request',);
if (!in_array($canonicalMethod, ['GET'])) {
$allow = array_merge($allow, ['GET']);
goto not_fos_user_resetting_request;
}
return $ret;
}
not_fos_user_resetting_request:
// fos_user_resetting_reset
if (0 === strpos($pathinfo, '/resetting/reset') && preg_match('#^/resetting/reset/(?P<token>[^/]++)$#sD', $pathinfo, $matches)) {
$ret = $this->mergeDefaults(array_replace($matches, ['_route' => 'fos_user_resetting_reset']), array ( '_controller' => 'fos_user.resetting.controller:resetAction',));
if (!in_array($canonicalMethod, ['GET', 'POST'])) {
$allow = array_merge($allow, ['GET', 'POST']);
goto not_fos_user_resetting_reset;
}
return $ret;
}
not_fos_user_resetting_reset:
// fos_user_resetting_send_email
if ('/resetting/send-email' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.resetting.controller:sendEmailAction', '_route' => 'fos_user_resetting_send_email',);
if (!in_array($requestMethod, ['POST'])) {
$allow = array_merge($allow, ['POST']);
goto not_fos_user_resetting_send_email;
}
return $ret;
}
not_fos_user_resetting_send_email:
// fos_user_resetting_check_email
if ('/resetting/check-email' === $pathinfo) {
$ret = array ( '_controller' => 'fos_user.resetting.controller:checkEmailAction', '_route' => 'fos_user_resetting_check_email',);
if (!in_array($canonicalMethod, ['GET'])) {
$allow = array_merge($allow, ['GET']);
goto not_fos_user_resetting_check_email;
}
return $ret;
}
not_fos_user_resetting_check_email:
}
// site_rezSorgula
if ('/rez-sorgula' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SiteController::rezSorgulaAction', '_route' => 'site_rezSorgula',);
}
// site_rezTakip
if ('/rez-takip' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SiteController::rezTakipAction', '_route' => 'site_rezTakip',);
}
}
// site_robots
if ('/robots.txt' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\RobotsController::indexAction', '_route' => 'site_robots',);
}
if (0 === strpos($pathinfo, '/seven')) {
// panel_homepage
if ('/seven' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\DefaultController::indexAction', '_route' => 'panel_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_panel_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'panel_homepage'));
}
return $ret;
}
not_panel_homepage:
if (0 === strpos($pathinfo, '/seven/cron')) {
// panel_cronKontrol
if ('/seven/cronKontrol' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DefaultController::cronKontrolAction', '_route' => 'panel_cronKontrol',);
}
// cron_homepage
if ('/seven/cron' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\CronController::indexAction', '_route' => 'cron_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_cron_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'cron_homepage'));
}
return $ret;
}
not_cron_homepage:
// cron_getir
if ('/seven/cron/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\CronController::getirAction', '_route' => 'cron_getir',);
}
// cron_ekle
if ('/seven/cron/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\CronController::ekleAction', '_route' => 'cron_ekle',);
}
// cron_sil
if ('/seven/cron/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\CronController::silAction', '_route' => 'cron_sil',);
}
// cron_varsayilan
if ('/seven/cron/varsayilan' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\CronController::varsayilanAction', '_route' => 'cron_varsayilan',);
}
}
// panel_cacheClear
if ('/seven/cacheClear' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DefaultController::cacheClearAction', '_route' => 'panel_cacheClear',);
}
// panel_alanAdiGetir
if ('/seven/alanAdiGetir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DefaultController::alanAdiGetirAction', '_route' => 'panel_alanAdiGetir',);
}
if (0 === strpos($pathinfo, '/seven/ayarlar')) {
// ayarlar_homepage
if ('/seven/ayarlar' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\AyarlarController::indexAction', '_route' => 'ayarlar_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_ayarlar_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'ayarlar_homepage'));
}
return $ret;
}
not_ayarlar_homepage:
// ayarlar_kaydet
if ('/seven/ayarlar/kaydet' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\AyarlarController::kaydetAction', '_route' => 'ayarlar_kaydet',);
}
// ayarlar_anadizin
if ('/seven/ayarlar/anadizin' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\AyarlarController::anadizinAction', '_route' => 'ayarlar_anadizin',);
}
// ayarlar_popupSil
if ('/seven/ayarlar/popupSil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\AyarlarController::popupSilAction', '_route' => 'ayarlar_popupSil',);
}
}
// panel_goruntulenmeGetir
if ('/seven/goruntulenmeGetir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DefaultController::goruntulenmeGetirAction', '_route' => 'panel_goruntulenmeGetir',);
}
if (0 === strpos($pathinfo, '/seven/i')) {
// panel_istatistikTemizle
if ('/seven/istatistikTemizle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DefaultController::istatistikTemizleAction', '_route' => 'panel_istatistikTemizle',);
}
// icerik_homepage
if (0 === strpos($pathinfo, '/seven/icerik') && preg_match('#^/seven/icerik/(?P<dilgrup>[^/]++)/?$#sD', $pathinfo, $matches)) {
$ret = $this->mergeDefaults(array_replace($matches, ['_route' => 'icerik_homepage']), array ( '_controller' => 'PanelBundle\\Controller\\IcerikController::indexAction',));
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_icerik_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'icerik_homepage'));
}
return $ret;
}
not_icerik_homepage:
if (0 === strpos($pathinfo, '/seven/ilan')) {
// ilan_homepage
if ('/seven/ilan' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\IlanController::indexAction', '_route' => 'ilan_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_ilan_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'ilan_homepage'));
}
return $ret;
}
not_ilan_homepage:
if (0 === strpos($pathinfo, '/seven/ilan/g')) {
// ilan_getir
if ('/seven/ilan/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::getirAction', '_route' => 'ilan_getir',);
}
// ilan_gorsel_sirala
if ('/seven/ilan/gorsel-sirala' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::gorselSiralaAction', '_route' => 'ilan_gorsel_sirala',);
}
// ilan_gorsel_sil
if ('/seven/ilan/gorsel-sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::gorselSilAction', '_route' => 'ilan_gorsel_sil',);
}
}
elseif (0 === strpos($pathinfo, '/seven/ilan/ekle')) {
// ilan_ekle
if ('/seven/ilan/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::ekleAction', '_route' => 'ilan_ekle',);
}
// ilan_ekleKayit
if ('/seven/ilan/ekle-kayit' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::ekleKayitAction', '_route' => 'ilan_ekleKayit',);
}
}
elseif (0 === strpos($pathinfo, '/seven/ilan/duzenle')) {
// ilan_duzenle
if (preg_match('#^/seven/ilan/duzenle/(?P<dilgrup>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'ilan_duzenle']), array ( '_controller' => 'PanelBundle\\Controller\\IlanController::duzenleAction',));
}
// ilan_duzenleKayit
if ('/seven/ilan/duzenle-kayit' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::duzenleKayitAction', '_route' => 'ilan_duzenleKayit',);
}
}
// ilan_durum_degistir
if ('/seven/ilan/durum-degistir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::durumDegistirAction', '_route' => 'ilan_durum_degistir',);
}
// ilan_sil
if ('/seven/ilan/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::silAction', '_route' => 'ilan_sil',);
}
// ilan_semtGetir
if ('/seven/ilan/semt-getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::semtGetirAction', '_route' => 'ilan_semtGetir',);
}
// ilan_ilceGetir
if ('/seven/ilan/ilce-getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\IlanController::ilceGetirAction', '_route' => 'ilan_ilceGetir',);
}
}
}
elseif (0 === strpos($pathinfo, '/seven/dil')) {
// dil_homepage
if ('/seven/dil' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\DilController::indexAction', '_route' => 'dil_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_dil_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'dil_homepage'));
}
return $ret;
}
not_dil_homepage:
// dil_getir
if ('/seven/dil/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DilController::getirAction', '_route' => 'dil_getir',);
}
// dil_varsayilan
if ('/seven/dil/varsayilan' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DilController::varsayilanAction', '_route' => 'dil_varsayilan',);
}
// dil_aktif
if ('/seven/dil/aktif' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DilController::aktifAction', '_route' => 'dil_aktif',);
}
}
elseif (0 === strpos($pathinfo, '/seven/dbeposta')) {
// dbeposta_homepage
if ('/seven/dbeposta' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\DbEpostaController::indexAction', '_route' => 'dbeposta_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_dbeposta_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'dbeposta_homepage'));
}
return $ret;
}
not_dbeposta_homepage:
// dbeposta_kaydet
if ('/seven/dbeposta/kaydet' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\DbEpostaController::kaydetAction', '_route' => 'dbeposta_kaydet',);
}
}
elseif (0 === strpos($pathinfo, '/seven/rezervasyon')) {
// rezervasyon_homepage
if ('/seven/rezervasyon' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\RezervasyonController::indexAction', '_route' => 'rezervasyon_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_rezervasyon_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'rezervasyon_homepage'));
}
return $ret;
}
not_rezervasyon_homepage:
// rezervasyon_getir
if ('/seven/rezervasyon/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\RezervasyonController::getirAction', '_route' => 'rezervasyon_getir',);
}
// rezervasyon_onayla
if ('/seven/rezervasyon/onayla' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\RezervasyonController::onaylaAction', '_route' => 'rezervasyon_onayla',);
}
// rezervasyon_odeme
if ('/seven/rezervasyon/odeme' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\RezervasyonController::odemeAction', '_route' => 'rezervasyon_odeme',);
}
// rezervasyon_sil
if ('/seven/rezervasyon/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\RezervasyonController::silAction', '_route' => 'rezervasyon_sil',);
}
}
elseif (0 === strpos($pathinfo, '/seven/kullanici')) {
// kullanici_homepage
if ('/seven/kullanici' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\KullaniciController::indexAction', '_route' => 'kullanici_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_kullanici_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'kullanici_homepage'));
}
return $ret;
}
not_kullanici_homepage:
// kullanici_kaydet
if ('/seven/kullanici/kaydet' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullaniciController::kaydetAction', '_route' => 'kullanici_kaydet',);
}
if (0 === strpos($pathinfo, '/seven/kullanicilar')) {
// kullanicilar_homepage
if ('/seven/kullanicilar' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::indexAction', '_route' => 'kullanicilar_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_kullanicilar_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'kullanicilar_homepage'));
}
return $ret;
}
not_kullanicilar_homepage:
// kullanicilar_getir
if ('/seven/kullanicilar/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::getirAction', '_route' => 'kullanicilar_getir',);
}
// kullanicilar_ekle
if ('/seven/kullanicilar/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::ekleAction', '_route' => 'kullanicilar_ekle',);
}
if (0 === strpos($pathinfo, '/seven/kullanicilar/duzenle')) {
// kullanicilar_duzenleAc
if ('/seven/kullanicilar/duzenleAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::duzenleAcAction', '_route' => 'kullanicilar_duzenleAc',);
}
// kullanicilar_duzenle
if ('/seven/kullanicilar/duzenle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::duzenleAction', '_route' => 'kullanicilar_duzenle',);
}
}
// kullanicilar_sil
if ('/seven/kullanicilar/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::silAction', '_route' => 'kullanicilar_sil',);
}
if (0 === strpos($pathinfo, '/seven/kullanicilar/yetkiler')) {
// kullanicilar_yetkilerAc
if ('/seven/kullanicilar/yetkilerAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::yetkilerAcAction', '_route' => 'kullanicilar_yetkilerAc',);
}
// kullanicilar_yetkiler
if ('/seven/kullanicilar/yetkiler' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\KullanicilarController::yetkilerAction', '_route' => 'kullanicilar_yetkiler',);
}
}
}
}
elseif (0 === strpos($pathinfo, '/seven/kategori')) {
// kategori_homepage
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/?$#sD', $pathinfo, $matches)) {
$ret = $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_homepage']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::indexAction',));
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_kategori_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'kategori_homepage'));
}
return $ret;
}
not_kategori_homepage:
// kategori_getir
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/getir$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_getir']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::getirAction',));
}
// kategori_ekle
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/ekle$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_ekle']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::ekleAction',));
}
// kategori_duzenleAc
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/duzenleAc$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_duzenleAc']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::duzenleAcAction',));
}
// kategori_duzenle
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/duzenle$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_duzenle']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::duzenleAction',));
}
// kategori_seoAyarAc
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/seoAyarAc$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_seoAyarAc']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::seoAyarAcAction',));
}
// kategori_seoAyar
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/seoAyar$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_seoAyar']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::seoAyarAction',));
}
// kategori_sil
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/sil$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_sil']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::silAction',));
}
// kategori_sirala
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/sirala$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_sirala']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::siralaAction',));
}
// kategori_temizle
if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/temizle$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_temizle']), array ( '_controller' => 'PanelBundle\\Controller\\KategoriController::temizleAction',));
}
}
elseif (0 === strpos($pathinfo, '/seven/s')) {
if (0 === strpos($pathinfo, '/seven/sosyal_ag')) {
// sosyal_ag_homepage
if ('/seven/sosyal_ag' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\SosyalAgController::indexAction', '_route' => 'sosyal_ag_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_sosyal_ag_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'sosyal_ag_homepage'));
}
return $ret;
}
not_sosyal_ag_homepage:
// sosyal_ag_kaydet
if ('/seven/sosyal_ag/kaydet' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SosyalAgController::kaydetAction', '_route' => 'sosyal_ag_kaydet',);
}
}
elseif (0 === strpos($pathinfo, '/seven/sayfa')) {
// sayfa_homepage
if ('/seven/sayfa' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::indexAction', '_route' => 'sayfa_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_sayfa_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'sayfa_homepage'));
}
return $ret;
}
not_sayfa_homepage:
// sayfa_getir
if ('/seven/sayfa/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::getirAction', '_route' => 'sayfa_getir',);
}
// sayfa_ekle
if ('/seven/sayfa/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::ekleAction', '_route' => 'sayfa_ekle',);
}
if (0 === strpos($pathinfo, '/seven/sayfa/duzenle')) {
// sayfa_duzenleAc
if ('/seven/sayfa/duzenleAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::duzenleAcAction', '_route' => 'sayfa_duzenleAc',);
}
// sayfa_duzenle
if ('/seven/sayfa/duzenle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::duzenleAction', '_route' => 'sayfa_duzenle',);
}
}
elseif (0 === strpos($pathinfo, '/seven/sayfa/s')) {
if (0 === strpos($pathinfo, '/seven/sayfa/seoAyar')) {
// sayfa_seoAyarAc
if ('/seven/sayfa/seoAyarAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::seoAyarAcAction', '_route' => 'sayfa_seoAyarAc',);
}
// sayfa_seoAyar
if ('/seven/sayfa/seoAyar' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::seoAyarAction', '_route' => 'sayfa_seoAyar',);
}
}
// sayfa_sil
if ('/seven/sayfa/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::silAction', '_route' => 'sayfa_sil',);
}
// sayfa_sirala
if ('/seven/sayfa/sirala' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SayfaController::siralaAction', '_route' => 'sayfa_sirala',);
}
}
}
elseif (0 === strpos($pathinfo, '/seven/single-content')) {
// tekveri_homepage
if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/?$#sD', $pathinfo, $matches)) {
$ret = $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_homepage']), array ( '_controller' => 'PanelBundle\\Controller\\TekVeriController::indexAction',));
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_tekveri_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'tekveri_homepage'));
}
return $ret;
}
not_tekveri_homepage:
// tekveri_kaydet
if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/kaydet/(?P<vDilgrup>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_kaydet']), array ( '_controller' => 'PanelBundle\\Controller\\TekVeriController::kaydetAction',));
}
// tekveri_gorsel_sil
if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/image\\-delete$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_gorsel_sil']), array ( '_controller' => 'PanelBundle\\Controller\\TekVeriController::gorsel_silAction',));
}
// tekveri_gorsel_sirala
if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/image\\-sort$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_gorsel_sirala']), array ( '_controller' => 'PanelBundle\\Controller\\TekVeriController::gorsel_siralaAction',));
}
}
elseif (0 === strpos($pathinfo, '/seven/slider')) {
// slider_homepage
if ('/seven/slider' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\SliderController::indexAction', '_route' => 'slider_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_slider_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'slider_homepage'));
}
return $ret;
}
not_slider_homepage:
// slider_getir
if ('/seven/slider/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SliderController::getirAction', '_route' => 'slider_getir',);
}
// slider_ekle
if ('/seven/slider/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SliderController::ekleAction', '_route' => 'slider_ekle',);
}
if (0 === strpos($pathinfo, '/seven/slider/duzenle')) {
// slider_duzenleAc
if ('/seven/slider/duzenleAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SliderController::duzenleAcAction', '_route' => 'slider_duzenleAc',);
}
// slider_duzenle
if ('/seven/slider/duzenle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SliderController::duzenleAction', '_route' => 'slider_duzenle',);
}
}
// slider_sil
if ('/seven/slider/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SliderController::silAction', '_route' => 'slider_sil',);
}
// slider_sirala
if ('/seven/slider/sirala' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\SliderController::siralaAction', '_route' => 'slider_sirala',);
}
}
}
elseif (0 === strpos($pathinfo, '/seven/m')) {
if (0 === strpos($pathinfo, '/seven/modul')) {
// modul_homepage
if ('/seven/modul' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\ModulController::indexAction', '_route' => 'modul_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_modul_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'modul_homepage'));
}
return $ret;
}
not_modul_homepage:
// modul_getir
if ('/seven/modul/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\ModulController::getirAction', '_route' => 'modul_getir',);
}
// modul_ekle
if ('/seven/modul/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\ModulController::ekleAction', '_route' => 'modul_ekle',);
}
if (0 === strpos($pathinfo, '/seven/modul/duzenle')) {
// modul_duzenleAc
if ('/seven/modul/duzenleAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\ModulController::duzenleAcAction', '_route' => 'modul_duzenleAc',);
}
// modul_duzenle
if ('/seven/modul/duzenle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\ModulController::duzenleAction', '_route' => 'modul_duzenle',);
}
}
// modul_sil
if ('/seven/modul/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\ModulController::silAction', '_route' => 'modul_sil',);
}
}
elseif (0 === strpos($pathinfo, '/seven/multi-content')) {
// cokveri_homepage
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/?$#sD', $pathinfo, $matches)) {
$ret = $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_homepage']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::indexAction',));
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_cokveri_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'cokveri_homepage'));
}
return $ret;
}
not_cokveri_homepage:
// cokveri_getir
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/getir$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_getir']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::getirAction',));
}
// cokveri_ekle
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/add$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_ekle']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::ekleAction',));
}
// cokveri_ekle_kaydet
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/add\\-save$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_ekle_kaydet']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::ekle_kaydetAction',));
}
// cokveri_duzenle
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/edit/(?P<vDilgrup>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_duzenle']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::duzenleAction',));
}
// cokveri_duzenle_kaydet
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/edit/(?P<vDilgrup>[^/]++)/save$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_duzenle_kaydet']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::duzenle_kaydetAction',));
}
// cokveri_sil
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/delete$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_sil']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::silAction',));
}
// cokveri_sirala
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/sort$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_sirala']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::siralaAction',));
}
// cokveri_gorsel_sil
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/image\\-delete$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_gorsel_sil']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::gorsel_silAction',));
}
// cokveri_gorsel_sirala
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/image\\-sort$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_gorsel_sirala']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::gorsel_siralaAction',));
}
// cokveri_temizle
if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/temizle$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_temizle']), array ( '_controller' => 'PanelBundle\\Controller\\CokVeriController::temizleAction',));
}
}
elseif (0 === strpos($pathinfo, '/seven/mesajlar')) {
// mesajlar_homepage
if ('/seven/mesajlar' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\MesajlarController::indexAction', '_route' => 'mesajlar_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_mesajlar_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'mesajlar_homepage'));
}
return $ret;
}
not_mesajlar_homepage:
// mesajlar_getir
if ('/seven/mesajlar/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\MesajlarController::getirAction', '_route' => 'mesajlar_getir',);
}
// mesajlar_oku
if ('/seven/mesajlar/oku' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\MesajlarController::okuAction', '_route' => 'mesajlar_oku',);
}
// mesajlar_sil
if ('/seven/mesajlar/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\MesajlarController::silAction', '_route' => 'mesajlar_sil',);
}
}
}
elseif (0 === strpos($pathinfo, '/seven/form')) {
// form_homepage
if ('/seven/form' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\FormController::indexAction', '_route' => 'form_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_form_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'form_homepage'));
}
return $ret;
}
not_form_homepage:
// form_getir
if ('/seven/form/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\FormController::getirAction', '_route' => 'form_getir',);
}
// form_ekle
if ('/seven/form/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\FormController::ekleAction', '_route' => 'form_ekle',);
}
// form_sil
if ('/seven/form/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\FormController::silAction', '_route' => 'form_sil',);
}
}
elseif (0 === strpos($pathinfo, '/seven/bildirimler')) {
// bildirimler_homepage
if ('/seven/bildirimler' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\BildirimlerController::indexAction', '_route' => 'bildirimler_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_bildirimler_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'bildirimler_homepage'));
}
return $ret;
}
not_bildirimler_homepage:
// bildirimler_getir
if ('/seven/bildirimler/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\BildirimlerController::getirAction', '_route' => 'bildirimler_getir',);
}
// bildirimler_sil
if ('/seven/bildirimler/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\BildirimlerController::silAction', '_route' => 'bildirimler_sil',);
}
}
elseif (0 === strpos($pathinfo, '/seven/villa-kategori')) {
// villa_kategori_homepage
if ('/seven/villa-kategori' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::indexAction', '_route' => 'villa_kategori_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_villa_kategori_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'villa_kategori_homepage'));
}
return $ret;
}
not_villa_kategori_homepage:
// villa_kategori_getir
if ('/seven/villa-kategori/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::getirAction', '_route' => 'villa_kategori_getir',);
}
// villa_kategori_ekle
if ('/seven/villa-kategori/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::ekleAction', '_route' => 'villa_kategori_ekle',);
}
if (0 === strpos($pathinfo, '/seven/villa-kategori/duzenle')) {
// villa_kategori_duzenleAc
if ('/seven/villa-kategori/duzenleAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::duzenleAcAction', '_route' => 'villa_kategori_duzenleAc',);
}
// villa_kategori_duzenle
if ('/seven/villa-kategori/duzenle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::duzenleAction', '_route' => 'villa_kategori_duzenle',);
}
}
elseif (0 === strpos($pathinfo, '/seven/villa-kategori/s')) {
if (0 === strpos($pathinfo, '/seven/villa-kategori/seoAyar')) {
// villa_kategori_seoAyarAc
if ('/seven/villa-kategori/seoAyarAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::seoAyarAcAction', '_route' => 'villa_kategori_seoAyarAc',);
}
// villa_kategori_seoAyar
if ('/seven/villa-kategori/seoAyar' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::seoAyarAction', '_route' => 'villa_kategori_seoAyar',);
}
}
// villa_kategori_sil
if ('/seven/villa-kategori/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::silAction', '_route' => 'villa_kategori_sil',);
}
// villa_kategori_sirala
if ('/seven/villa-kategori/sirala' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::siralaAction', '_route' => 'villa_kategori_sirala',);
}
}
// villa_kategori_temizle
if ('/seven/villa-kategori/temizle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::temizleAction', '_route' => 'villa_kategori_temizle',);
}
}
elseif (0 === strpos($pathinfo, '/seven/ozellik')) {
// ozellik_homepage
if ('/seven/ozellik' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::indexAction', '_route' => 'ozellik_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_ozellik_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'ozellik_homepage'));
}
return $ret;
}
not_ozellik_homepage:
// ozellik_getir
if ('/seven/ozellik/getir' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::getirAction', '_route' => 'ozellik_getir',);
}
// ozellik_ekle
if ('/seven/ozellik/ekle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::ekleAction', '_route' => 'ozellik_ekle',);
}
if (0 === strpos($pathinfo, '/seven/ozellik/duzenle')) {
// ozellik_duzenleAc
if ('/seven/ozellik/duzenleAc' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::duzenleAcAction', '_route' => 'ozellik_duzenleAc',);
}
// ozellik_duzenle
if ('/seven/ozellik/duzenle' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::duzenleAction', '_route' => 'ozellik_duzenle',);
}
}
// ozellik_sil
if ('/seven/ozellik/sil' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::silAction', '_route' => 'ozellik_sil',);
}
// ozellik_sirala
if ('/seven/ozellik/sirala' === $pathinfo) {
return array ( '_controller' => 'PanelBundle\\Controller\\OzellikController::siralaAction', '_route' => 'ozellik_sirala',);
}
}
}
// site_map
if ('/sitemap.xml' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SitemapController::indexAction', '_route' => 'site_map',);
}
// site_homepage
if ('' === $trimmedPathinfo) {
$ret = array ( '_controller' => 'SiteBundle\\Controller\\SiteController::indexAction', '_route' => 'site_homepage',);
if ('/' === substr($pathinfo, -1)) {
// no-op
} elseif ('GET' !== $canonicalMethod) {
goto not_site_homepage;
} else {
return array_replace($ret, $this->redirect($rawPathinfo.'/', 'site_homepage'));
}
return $ret;
}
not_site_homepage:
// site_formKayit
if ('/form-kayit' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SiteController::formKayitAction', '_route' => 'site_formKayit',);
}
// site_ilanGetir
if ('/ilan-getir' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SiteController::ilanGetirAction', '_route' => 'site_ilanGetir',);
}
// site_hizliArama
if ('/hizli-arama' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SiteController::hizliAramaAction', '_route' => 'site_hizliArama',);
}
// site_talepGonder
if ('/talep-gonder' === $pathinfo) {
return array ( '_controller' => 'SiteBundle\\Controller\\SiteController::talepGonderAction', '_route' => 'site_talepGonder',);
}
// site_sayfa1
if (preg_match('#^/(?P<seo1>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa1']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa2
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa2']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa3
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa3']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa4
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa4']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa5
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa5']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa6
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa6']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa7
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa7']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa8
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa8']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa9
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa9']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa10
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)/(?P<seo10>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa10']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa11
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)/(?P<seo10>[^/]++)/(?P<seo11>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa11']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa12
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)/(?P<seo10>[^/]++)/(?P<seo11>[^/]++)/(?P<seo12>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa12']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa13
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)/(?P<seo10>[^/]++)/(?P<seo11>[^/]++)/(?P<seo12>[^/]++)/(?P<seo13>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa13']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa14
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)/(?P<seo10>[^/]++)/(?P<seo11>[^/]++)/(?P<seo12>[^/]++)/(?P<seo13>[^/]++)/(?P<seo14>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa14']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
// site_sayfa15
if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)/(?P<seo10>[^/]++)/(?P<seo11>[^/]++)/(?P<seo12>[^/]++)/(?P<seo13>[^/]++)/(?P<seo14>[^/]++)/(?P<seo15>[^/]++)$#sD', $pathinfo, $matches)) {
return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa15']), array ( '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
}
if ('/' === $pathinfo && !$allow) {
throw new Symfony\Component\Routing\Exception\NoConfigurationException();
}
throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException();
}
}