var/cache/dev/appDevDebugProjectContainerUrlMatcher.php line 1410

Open in your IDE?
  1. <?php
  2. use Symfony\Component\Routing\Exception\MethodNotAllowedException;
  3. use Symfony\Component\Routing\Exception\ResourceNotFoundException;
  4. use Symfony\Component\Routing\RequestContext;
  5. /**
  6.  * This class has been auto-generated
  7.  * by the Symfony Routing Component.
  8.  */
  9. class appDevDebugProjectContainerUrlMatcher extends Symfony\Bundle\FrameworkBundle\Routing\RedirectableUrlMatcher
  10. {
  11.     public function __construct(RequestContext $context)
  12.     {
  13.         $this->context $context;
  14.     }
  15.     public function match($rawPathinfo)
  16.     {
  17.         $allow = [];
  18.         $pathinfo rawurldecode($rawPathinfo);
  19.         $trimmedPathinfo rtrim($pathinfo'/');
  20.         $context $this->context;
  21.         $request $this->request ?: $this->createRequest($pathinfo);
  22.         $requestMethod $canonicalMethod $context->getMethod();
  23.         if ('HEAD' === $requestMethod) {
  24.             $canonicalMethod 'GET';
  25.         }
  26.         if (=== strpos($pathinfo'/_')) {
  27.             // _wdt
  28.             if (=== strpos($pathinfo'/_wdt') && preg_match('#^/_wdt/(?P<token>[^/]++)$#sD'$pathinfo$matches)) {
  29.                 return $this->mergeDefaults(array_replace($matches, ['_route' => '_wdt']), array (  '_controller' => 'web_profiler.controller.profiler:toolbarAction',));
  30.             }
  31.             if (=== strpos($pathinfo'/_profiler')) {
  32.                 // _profiler_home
  33.                 if ('/_profiler' === $trimmedPathinfo) {
  34.                     $ret = array (  '_controller' => 'web_profiler.controller.profiler:homeAction',  '_route' => '_profiler_home',);
  35.                     if ('/' === substr($pathinfo, -1)) {
  36.                         // no-op
  37.                     } elseif ('GET' !== $canonicalMethod) {
  38.                         goto not__profiler_home;
  39.                     } else {
  40.                         return array_replace($ret$this->redirect($rawPathinfo.'/''_profiler_home'));
  41.                     }
  42.                     return $ret;
  43.                 }
  44.                 not__profiler_home:
  45.                 if (=== strpos($pathinfo'/_profiler/search')) {
  46.                     // _profiler_search
  47.                     if ('/_profiler/search' === $pathinfo) {
  48.                         return array (  '_controller' => 'web_profiler.controller.profiler:searchAction',  '_route' => '_profiler_search',);
  49.                     }
  50.                     // _profiler_search_bar
  51.                     if ('/_profiler/search_bar' === $pathinfo) {
  52.                         return array (  '_controller' => 'web_profiler.controller.profiler:searchBarAction',  '_route' => '_profiler_search_bar',);
  53.                     }
  54.                 }
  55.                 // _profiler_phpinfo
  56.                 if ('/_profiler/phpinfo' === $pathinfo) {
  57.                     return array (  '_controller' => 'web_profiler.controller.profiler:phpinfoAction',  '_route' => '_profiler_phpinfo',);
  58.                 }
  59.                 // _profiler_search_results
  60.                 if (preg_match('#^/_profiler/(?P<token>[^/]++)/search/results$#sD'$pathinfo$matches)) {
  61.                     return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_search_results']), array (  '_controller' => 'web_profiler.controller.profiler:searchResultsAction',));
  62.                 }
  63.                 // _profiler_open_file
  64.                 if ('/_profiler/open' === $pathinfo) {
  65.                     return array (  '_controller' => 'web_profiler.controller.profiler:openAction',  '_route' => '_profiler_open_file',);
  66.                 }
  67.                 // _profiler
  68.                 if (preg_match('#^/_profiler/(?P<token>[^/]++)$#sD'$pathinfo$matches)) {
  69.                     return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler']), array (  '_controller' => 'web_profiler.controller.profiler:panelAction',));
  70.                 }
  71.                 // _profiler_router
  72.                 if (preg_match('#^/_profiler/(?P<token>[^/]++)/router$#sD'$pathinfo$matches)) {
  73.                     return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_router']), array (  '_controller' => 'web_profiler.controller.router:panelAction',));
  74.                 }
  75.                 // _profiler_exception
  76.                 if (preg_match('#^/_profiler/(?P<token>[^/]++)/exception$#sD'$pathinfo$matches)) {
  77.                     return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_exception']), array (  '_controller' => 'web_profiler.controller.exception:showAction',));
  78.                 }
  79.                 // _profiler_exception_css
  80.                 if (preg_match('#^/_profiler/(?P<token>[^/]++)/exception\\.css$#sD'$pathinfo$matches)) {
  81.                     return $this->mergeDefaults(array_replace($matches, ['_route' => '_profiler_exception_css']), array (  '_controller' => 'web_profiler.controller.exception:cssAction',));
  82.                 }
  83.             }
  84.             // _twig_error_test
  85.             if (=== strpos($pathinfo'/_error') && preg_match('#^/_error/(?P<code>\\d+)(?:\\.(?P<_format>[^/]++))?$#sD'$pathinfo$matches)) {
  86.                 return $this->mergeDefaults(array_replace($matches, ['_route' => '_twig_error_test']), array (  '_controller' => 'twig.controller.preview_error:previewErrorPageAction',  '_format' => 'html',));
  87.             }
  88.         }
  89.         elseif (=== strpos($pathinfo'/login')) {
  90.             // fos_user_security_login
  91.             if ('/login' === $pathinfo) {
  92.                 $ret = array (  '_controller' => 'fos_user.security.controller:loginAction',  '_route' => 'fos_user_security_login',);
  93.                 if (!in_array($canonicalMethod, ['GET''POST'])) {
  94.                     $allow array_merge($allow, ['GET''POST']);
  95.                     goto not_fos_user_security_login;
  96.                 }
  97.                 return $ret;
  98.             }
  99.             not_fos_user_security_login:
  100.             // fos_user_security_check
  101.             if ('/login_check' === $pathinfo) {
  102.                 $ret = array (  '_controller' => 'fos_user.security.controller:checkAction',  '_route' => 'fos_user_security_check',);
  103.                 if (!in_array($requestMethod, ['POST'])) {
  104.                     $allow array_merge($allow, ['POST']);
  105.                     goto not_fos_user_security_check;
  106.                 }
  107.                 return $ret;
  108.             }
  109.             not_fos_user_security_check:
  110.         }
  111.         // fos_user_security_logout
  112.         if ('/logout' === $pathinfo) {
  113.             $ret = array (  '_controller' => 'fos_user.security.controller:logoutAction',  '_route' => 'fos_user_security_logout',);
  114.             if (!in_array($canonicalMethod, ['GET''POST'])) {
  115.                 $allow array_merge($allow, ['GET''POST']);
  116.                 goto not_fos_user_security_logout;
  117.             }
  118.             return $ret;
  119.         }
  120.         not_fos_user_security_logout:
  121.         if (=== strpos($pathinfo'/profile')) {
  122.             // fos_user_profile_show
  123.             if ('/profile' === $trimmedPathinfo) {
  124.                 $ret = array (  '_controller' => 'fos_user.profile.controller:showAction',  '_route' => 'fos_user_profile_show',);
  125.                 if ('/' === substr($pathinfo, -1)) {
  126.                     // no-op
  127.                 } elseif ('GET' !== $canonicalMethod) {
  128.                     goto not_fos_user_profile_show;
  129.                 } else {
  130.                     return array_replace($ret$this->redirect($rawPathinfo.'/''fos_user_profile_show'));
  131.                 }
  132.                 if (!in_array($canonicalMethod, ['GET'])) {
  133.                     $allow array_merge($allow, ['GET']);
  134.                     goto not_fos_user_profile_show;
  135.                 }
  136.                 return $ret;
  137.             }
  138.             not_fos_user_profile_show:
  139.             // fos_user_profile_edit
  140.             if ('/profile/edit' === $pathinfo) {
  141.                 $ret = array (  '_controller' => 'fos_user.profile.controller:editAction',  '_route' => 'fos_user_profile_edit',);
  142.                 if (!in_array($canonicalMethod, ['GET''POST'])) {
  143.                     $allow array_merge($allow, ['GET''POST']);
  144.                     goto not_fos_user_profile_edit;
  145.                 }
  146.                 return $ret;
  147.             }
  148.             not_fos_user_profile_edit:
  149.             // fos_user_change_password
  150.             if ('/profile/change-password' === $pathinfo) {
  151.                 $ret = array (  '_controller' => 'fos_user.change_password.controller:changePasswordAction',  '_route' => 'fos_user_change_password',);
  152.                 if (!in_array($canonicalMethod, ['GET''POST'])) {
  153.                     $allow array_merge($allow, ['GET''POST']);
  154.                     goto not_fos_user_change_password;
  155.                 }
  156.                 return $ret;
  157.             }
  158.             not_fos_user_change_password:
  159.         }
  160.         elseif (=== strpos($pathinfo'/re')) {
  161.             if (=== strpos($pathinfo'/register')) {
  162.                 // fos_user_registration_register
  163.                 if ('/register' === $trimmedPathinfo) {
  164.                     $ret = array (  '_controller' => 'fos_user.registration.controller:registerAction',  '_route' => 'fos_user_registration_register',);
  165.                     if ('/' === substr($pathinfo, -1)) {
  166.                         // no-op
  167.                     } elseif ('GET' !== $canonicalMethod) {
  168.                         goto not_fos_user_registration_register;
  169.                     } else {
  170.                         return array_replace($ret$this->redirect($rawPathinfo.'/''fos_user_registration_register'));
  171.                     }
  172.                     if (!in_array($canonicalMethod, ['GET''POST'])) {
  173.                         $allow array_merge($allow, ['GET''POST']);
  174.                         goto not_fos_user_registration_register;
  175.                     }
  176.                     return $ret;
  177.                 }
  178.                 not_fos_user_registration_register:
  179.                 // fos_user_registration_check_email
  180.                 if ('/register/check-email' === $pathinfo) {
  181.                     $ret = array (  '_controller' => 'fos_user.registration.controller:checkEmailAction',  '_route' => 'fos_user_registration_check_email',);
  182.                     if (!in_array($canonicalMethod, ['GET'])) {
  183.                         $allow array_merge($allow, ['GET']);
  184.                         goto not_fos_user_registration_check_email;
  185.                     }
  186.                     return $ret;
  187.                 }
  188.                 not_fos_user_registration_check_email:
  189.                 if (=== strpos($pathinfo'/register/confirm')) {
  190.                     // fos_user_registration_confirm
  191.                     if (preg_match('#^/register/confirm/(?P<token>[^/]++)$#sD'$pathinfo$matches)) {
  192.                         $ret $this->mergeDefaults(array_replace($matches, ['_route' => 'fos_user_registration_confirm']), array (  '_controller' => 'fos_user.registration.controller:confirmAction',));
  193.                         if (!in_array($canonicalMethod, ['GET'])) {
  194.                             $allow array_merge($allow, ['GET']);
  195.                             goto not_fos_user_registration_confirm;
  196.                         }
  197.                         return $ret;
  198.                     }
  199.                     not_fos_user_registration_confirm:
  200.                     // fos_user_registration_confirmed
  201.                     if ('/register/confirmed' === $pathinfo) {
  202.                         $ret = array (  '_controller' => 'fos_user.registration.controller:confirmedAction',  '_route' => 'fos_user_registration_confirmed',);
  203.                         if (!in_array($canonicalMethod, ['GET'])) {
  204.                             $allow array_merge($allow, ['GET']);
  205.                             goto not_fos_user_registration_confirmed;
  206.                         }
  207.                         return $ret;
  208.                     }
  209.                     not_fos_user_registration_confirmed:
  210.                 }
  211.             }
  212.             elseif (=== strpos($pathinfo'/resetting')) {
  213.                 // fos_user_resetting_request
  214.                 if ('/resetting/request' === $pathinfo) {
  215.                     $ret = array (  '_controller' => 'fos_user.resetting.controller:requestAction',  '_route' => 'fos_user_resetting_request',);
  216.                     if (!in_array($canonicalMethod, ['GET'])) {
  217.                         $allow array_merge($allow, ['GET']);
  218.                         goto not_fos_user_resetting_request;
  219.                     }
  220.                     return $ret;
  221.                 }
  222.                 not_fos_user_resetting_request:
  223.                 // fos_user_resetting_reset
  224.                 if (=== strpos($pathinfo'/resetting/reset') && preg_match('#^/resetting/reset/(?P<token>[^/]++)$#sD'$pathinfo$matches)) {
  225.                     $ret $this->mergeDefaults(array_replace($matches, ['_route' => 'fos_user_resetting_reset']), array (  '_controller' => 'fos_user.resetting.controller:resetAction',));
  226.                     if (!in_array($canonicalMethod, ['GET''POST'])) {
  227.                         $allow array_merge($allow, ['GET''POST']);
  228.                         goto not_fos_user_resetting_reset;
  229.                     }
  230.                     return $ret;
  231.                 }
  232.                 not_fos_user_resetting_reset:
  233.                 // fos_user_resetting_send_email
  234.                 if ('/resetting/send-email' === $pathinfo) {
  235.                     $ret = array (  '_controller' => 'fos_user.resetting.controller:sendEmailAction',  '_route' => 'fos_user_resetting_send_email',);
  236.                     if (!in_array($requestMethod, ['POST'])) {
  237.                         $allow array_merge($allow, ['POST']);
  238.                         goto not_fos_user_resetting_send_email;
  239.                     }
  240.                     return $ret;
  241.                 }
  242.                 not_fos_user_resetting_send_email:
  243.                 // fos_user_resetting_check_email
  244.                 if ('/resetting/check-email' === $pathinfo) {
  245.                     $ret = array (  '_controller' => 'fos_user.resetting.controller:checkEmailAction',  '_route' => 'fos_user_resetting_check_email',);
  246.                     if (!in_array($canonicalMethod, ['GET'])) {
  247.                         $allow array_merge($allow, ['GET']);
  248.                         goto not_fos_user_resetting_check_email;
  249.                     }
  250.                     return $ret;
  251.                 }
  252.                 not_fos_user_resetting_check_email:
  253.             }
  254.             // site_rezSorgula
  255.             if ('/rez-sorgula' === $pathinfo) {
  256.                 return array (  '_controller' => 'SiteBundle\\Controller\\SiteController::rezSorgulaAction',  '_route' => 'site_rezSorgula',);
  257.             }
  258.             // site_rezTakip
  259.             if ('/rez-takip' === $pathinfo) {
  260.                 return array (  '_controller' => 'SiteBundle\\Controller\\SiteController::rezTakipAction',  '_route' => 'site_rezTakip',);
  261.             }
  262.         }
  263.         // site_robots
  264.         if ('/robots.txt' === $pathinfo) {
  265.             return array (  '_controller' => 'SiteBundle\\Controller\\RobotsController::indexAction',  '_route' => 'site_robots',);
  266.         }
  267.         if (=== strpos($pathinfo'/seven')) {
  268.             // panel_homepage
  269.             if ('/seven' === $trimmedPathinfo) {
  270.                 $ret = array (  '_controller' => 'PanelBundle\\Controller\\DefaultController::indexAction',  '_route' => 'panel_homepage',);
  271.                 if ('/' === substr($pathinfo, -1)) {
  272.                     // no-op
  273.                 } elseif ('GET' !== $canonicalMethod) {
  274.                     goto not_panel_homepage;
  275.                 } else {
  276.                     return array_replace($ret$this->redirect($rawPathinfo.'/''panel_homepage'));
  277.                 }
  278.                 return $ret;
  279.             }
  280.             not_panel_homepage:
  281.             if (=== strpos($pathinfo'/seven/cron')) {
  282.                 // panel_cronKontrol
  283.                 if ('/seven/cronKontrol' === $pathinfo) {
  284.                     return array (  '_controller' => 'PanelBundle\\Controller\\DefaultController::cronKontrolAction',  '_route' => 'panel_cronKontrol',);
  285.                 }
  286.                 // cron_homepage
  287.                 if ('/seven/cron' === $trimmedPathinfo) {
  288.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\CronController::indexAction',  '_route' => 'cron_homepage',);
  289.                     if ('/' === substr($pathinfo, -1)) {
  290.                         // no-op
  291.                     } elseif ('GET' !== $canonicalMethod) {
  292.                         goto not_cron_homepage;
  293.                     } else {
  294.                         return array_replace($ret$this->redirect($rawPathinfo.'/''cron_homepage'));
  295.                     }
  296.                     return $ret;
  297.                 }
  298.                 not_cron_homepage:
  299.                 // cron_getir
  300.                 if ('/seven/cron/getir' === $pathinfo) {
  301.                     return array (  '_controller' => 'PanelBundle\\Controller\\CronController::getirAction',  '_route' => 'cron_getir',);
  302.                 }
  303.                 // cron_ekle
  304.                 if ('/seven/cron/ekle' === $pathinfo) {
  305.                     return array (  '_controller' => 'PanelBundle\\Controller\\CronController::ekleAction',  '_route' => 'cron_ekle',);
  306.                 }
  307.                 // cron_sil
  308.                 if ('/seven/cron/sil' === $pathinfo) {
  309.                     return array (  '_controller' => 'PanelBundle\\Controller\\CronController::silAction',  '_route' => 'cron_sil',);
  310.                 }
  311.                 // cron_varsayilan
  312.                 if ('/seven/cron/varsayilan' === $pathinfo) {
  313.                     return array (  '_controller' => 'PanelBundle\\Controller\\CronController::varsayilanAction',  '_route' => 'cron_varsayilan',);
  314.                 }
  315.             }
  316.             // panel_cacheClear
  317.             if ('/seven/cacheClear' === $pathinfo) {
  318.                 return array (  '_controller' => 'PanelBundle\\Controller\\DefaultController::cacheClearAction',  '_route' => 'panel_cacheClear',);
  319.             }
  320.             // panel_alanAdiGetir
  321.             if ('/seven/alanAdiGetir' === $pathinfo) {
  322.                 return array (  '_controller' => 'PanelBundle\\Controller\\DefaultController::alanAdiGetirAction',  '_route' => 'panel_alanAdiGetir',);
  323.             }
  324.             if (=== strpos($pathinfo'/seven/ayarlar')) {
  325.                 // ayarlar_homepage
  326.                 if ('/seven/ayarlar' === $trimmedPathinfo) {
  327.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\AyarlarController::indexAction',  '_route' => 'ayarlar_homepage',);
  328.                     if ('/' === substr($pathinfo, -1)) {
  329.                         // no-op
  330.                     } elseif ('GET' !== $canonicalMethod) {
  331.                         goto not_ayarlar_homepage;
  332.                     } else {
  333.                         return array_replace($ret$this->redirect($rawPathinfo.'/''ayarlar_homepage'));
  334.                     }
  335.                     return $ret;
  336.                 }
  337.                 not_ayarlar_homepage:
  338.                 // ayarlar_kaydet
  339.                 if ('/seven/ayarlar/kaydet' === $pathinfo) {
  340.                     return array (  '_controller' => 'PanelBundle\\Controller\\AyarlarController::kaydetAction',  '_route' => 'ayarlar_kaydet',);
  341.                 }
  342.                 // ayarlar_anadizin
  343.                 if ('/seven/ayarlar/anadizin' === $pathinfo) {
  344.                     return array (  '_controller' => 'PanelBundle\\Controller\\AyarlarController::anadizinAction',  '_route' => 'ayarlar_anadizin',);
  345.                 }
  346.                 // ayarlar_popupSil
  347.                 if ('/seven/ayarlar/popupSil' === $pathinfo) {
  348.                     return array (  '_controller' => 'PanelBundle\\Controller\\AyarlarController::popupSilAction',  '_route' => 'ayarlar_popupSil',);
  349.                 }
  350.             }
  351.             // panel_goruntulenmeGetir
  352.             if ('/seven/goruntulenmeGetir' === $pathinfo) {
  353.                 return array (  '_controller' => 'PanelBundle\\Controller\\DefaultController::goruntulenmeGetirAction',  '_route' => 'panel_goruntulenmeGetir',);
  354.             }
  355.             if (=== strpos($pathinfo'/seven/i')) {
  356.                 // panel_istatistikTemizle
  357.                 if ('/seven/istatistikTemizle' === $pathinfo) {
  358.                     return array (  '_controller' => 'PanelBundle\\Controller\\DefaultController::istatistikTemizleAction',  '_route' => 'panel_istatistikTemizle',);
  359.                 }
  360.                 // icerik_homepage
  361.                 if (=== strpos($pathinfo'/seven/icerik') && preg_match('#^/seven/icerik/(?P<dilgrup>[^/]++)/?$#sD'$pathinfo$matches)) {
  362.                     $ret $this->mergeDefaults(array_replace($matches, ['_route' => 'icerik_homepage']), array (  '_controller' => 'PanelBundle\\Controller\\IcerikController::indexAction',));
  363.                     if ('/' === substr($pathinfo, -1)) {
  364.                         // no-op
  365.                     } elseif ('GET' !== $canonicalMethod) {
  366.                         goto not_icerik_homepage;
  367.                     } else {
  368.                         return array_replace($ret$this->redirect($rawPathinfo.'/''icerik_homepage'));
  369.                     }
  370.                     return $ret;
  371.                 }
  372.                 not_icerik_homepage:
  373.                 if (=== strpos($pathinfo'/seven/ilan')) {
  374.                     // ilan_homepage
  375.                     if ('/seven/ilan' === $trimmedPathinfo) {
  376.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\IlanController::indexAction',  '_route' => 'ilan_homepage',);
  377.                         if ('/' === substr($pathinfo, -1)) {
  378.                             // no-op
  379.                         } elseif ('GET' !== $canonicalMethod) {
  380.                             goto not_ilan_homepage;
  381.                         } else {
  382.                             return array_replace($ret$this->redirect($rawPathinfo.'/''ilan_homepage'));
  383.                         }
  384.                         return $ret;
  385.                     }
  386.                     not_ilan_homepage:
  387.                     if (=== strpos($pathinfo'/seven/ilan/g')) {
  388.                         // ilan_getir
  389.                         if ('/seven/ilan/getir' === $pathinfo) {
  390.                             return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::getirAction',  '_route' => 'ilan_getir',);
  391.                         }
  392.                         // ilan_gorsel_sirala
  393.                         if ('/seven/ilan/gorsel-sirala' === $pathinfo) {
  394.                             return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::gorselSiralaAction',  '_route' => 'ilan_gorsel_sirala',);
  395.                         }
  396.                         // ilan_gorsel_sil
  397.                         if ('/seven/ilan/gorsel-sil' === $pathinfo) {
  398.                             return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::gorselSilAction',  '_route' => 'ilan_gorsel_sil',);
  399.                         }
  400.                     }
  401.                     elseif (=== strpos($pathinfo'/seven/ilan/ekle')) {
  402.                         // ilan_ekle
  403.                         if ('/seven/ilan/ekle' === $pathinfo) {
  404.                             return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::ekleAction',  '_route' => 'ilan_ekle',);
  405.                         }
  406.                         // ilan_ekleKayit
  407.                         if ('/seven/ilan/ekle-kayit' === $pathinfo) {
  408.                             return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::ekleKayitAction',  '_route' => 'ilan_ekleKayit',);
  409.                         }
  410.                     }
  411.                     elseif (=== strpos($pathinfo'/seven/ilan/duzenle')) {
  412.                         // ilan_duzenle
  413.                         if (preg_match('#^/seven/ilan/duzenle/(?P<dilgrup>[^/]++)$#sD'$pathinfo$matches)) {
  414.                             return $this->mergeDefaults(array_replace($matches, ['_route' => 'ilan_duzenle']), array (  '_controller' => 'PanelBundle\\Controller\\IlanController::duzenleAction',));
  415.                         }
  416.                         // ilan_duzenleKayit
  417.                         if ('/seven/ilan/duzenle-kayit' === $pathinfo) {
  418.                             return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::duzenleKayitAction',  '_route' => 'ilan_duzenleKayit',);
  419.                         }
  420.                     }
  421.                     // ilan_durum_degistir
  422.                     if ('/seven/ilan/durum-degistir' === $pathinfo) {
  423.                         return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::durumDegistirAction',  '_route' => 'ilan_durum_degistir',);
  424.                     }
  425.                     // ilan_sil
  426.                     if ('/seven/ilan/sil' === $pathinfo) {
  427.                         return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::silAction',  '_route' => 'ilan_sil',);
  428.                     }
  429.                     // ilan_semtGetir
  430.                     if ('/seven/ilan/semt-getir' === $pathinfo) {
  431.                         return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::semtGetirAction',  '_route' => 'ilan_semtGetir',);
  432.                     }
  433.                     // ilan_ilceGetir
  434.                     if ('/seven/ilan/ilce-getir' === $pathinfo) {
  435.                         return array (  '_controller' => 'PanelBundle\\Controller\\IlanController::ilceGetirAction',  '_route' => 'ilan_ilceGetir',);
  436.                     }
  437.                 }
  438.             }
  439.             elseif (=== strpos($pathinfo'/seven/dil')) {
  440.                 // dil_homepage
  441.                 if ('/seven/dil' === $trimmedPathinfo) {
  442.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\DilController::indexAction',  '_route' => 'dil_homepage',);
  443.                     if ('/' === substr($pathinfo, -1)) {
  444.                         // no-op
  445.                     } elseif ('GET' !== $canonicalMethod) {
  446.                         goto not_dil_homepage;
  447.                     } else {
  448.                         return array_replace($ret$this->redirect($rawPathinfo.'/''dil_homepage'));
  449.                     }
  450.                     return $ret;
  451.                 }
  452.                 not_dil_homepage:
  453.                 // dil_getir
  454.                 if ('/seven/dil/getir' === $pathinfo) {
  455.                     return array (  '_controller' => 'PanelBundle\\Controller\\DilController::getirAction',  '_route' => 'dil_getir',);
  456.                 }
  457.                 // dil_varsayilan
  458.                 if ('/seven/dil/varsayilan' === $pathinfo) {
  459.                     return array (  '_controller' => 'PanelBundle\\Controller\\DilController::varsayilanAction',  '_route' => 'dil_varsayilan',);
  460.                 }
  461.                 // dil_aktif
  462.                 if ('/seven/dil/aktif' === $pathinfo) {
  463.                     return array (  '_controller' => 'PanelBundle\\Controller\\DilController::aktifAction',  '_route' => 'dil_aktif',);
  464.                 }
  465.             }
  466.             elseif (=== strpos($pathinfo'/seven/dbeposta')) {
  467.                 // dbeposta_homepage
  468.                 if ('/seven/dbeposta' === $trimmedPathinfo) {
  469.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\DbEpostaController::indexAction',  '_route' => 'dbeposta_homepage',);
  470.                     if ('/' === substr($pathinfo, -1)) {
  471.                         // no-op
  472.                     } elseif ('GET' !== $canonicalMethod) {
  473.                         goto not_dbeposta_homepage;
  474.                     } else {
  475.                         return array_replace($ret$this->redirect($rawPathinfo.'/''dbeposta_homepage'));
  476.                     }
  477.                     return $ret;
  478.                 }
  479.                 not_dbeposta_homepage:
  480.                 // dbeposta_kaydet
  481.                 if ('/seven/dbeposta/kaydet' === $pathinfo) {
  482.                     return array (  '_controller' => 'PanelBundle\\Controller\\DbEpostaController::kaydetAction',  '_route' => 'dbeposta_kaydet',);
  483.                 }
  484.             }
  485.             elseif (=== strpos($pathinfo'/seven/rezervasyon')) {
  486.                 // rezervasyon_homepage
  487.                 if ('/seven/rezervasyon' === $trimmedPathinfo) {
  488.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\RezervasyonController::indexAction',  '_route' => 'rezervasyon_homepage',);
  489.                     if ('/' === substr($pathinfo, -1)) {
  490.                         // no-op
  491.                     } elseif ('GET' !== $canonicalMethod) {
  492.                         goto not_rezervasyon_homepage;
  493.                     } else {
  494.                         return array_replace($ret$this->redirect($rawPathinfo.'/''rezervasyon_homepage'));
  495.                     }
  496.                     return $ret;
  497.                 }
  498.                 not_rezervasyon_homepage:
  499.                 // rezervasyon_getir
  500.                 if ('/seven/rezervasyon/getir' === $pathinfo) {
  501.                     return array (  '_controller' => 'PanelBundle\\Controller\\RezervasyonController::getirAction',  '_route' => 'rezervasyon_getir',);
  502.                 }
  503.                 // rezervasyon_onayla
  504.                 if ('/seven/rezervasyon/onayla' === $pathinfo) {
  505.                     return array (  '_controller' => 'PanelBundle\\Controller\\RezervasyonController::onaylaAction',  '_route' => 'rezervasyon_onayla',);
  506.                 }
  507.                 // rezervasyon_odeme
  508.                 if ('/seven/rezervasyon/odeme' === $pathinfo) {
  509.                     return array (  '_controller' => 'PanelBundle\\Controller\\RezervasyonController::odemeAction',  '_route' => 'rezervasyon_odeme',);
  510.                 }
  511.                 // rezervasyon_sil
  512.                 if ('/seven/rezervasyon/sil' === $pathinfo) {
  513.                     return array (  '_controller' => 'PanelBundle\\Controller\\RezervasyonController::silAction',  '_route' => 'rezervasyon_sil',);
  514.                 }
  515.             }
  516.             elseif (=== strpos($pathinfo'/seven/kullanici')) {
  517.                 // kullanici_homepage
  518.                 if ('/seven/kullanici' === $trimmedPathinfo) {
  519.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\KullaniciController::indexAction',  '_route' => 'kullanici_homepage',);
  520.                     if ('/' === substr($pathinfo, -1)) {
  521.                         // no-op
  522.                     } elseif ('GET' !== $canonicalMethod) {
  523.                         goto not_kullanici_homepage;
  524.                     } else {
  525.                         return array_replace($ret$this->redirect($rawPathinfo.'/''kullanici_homepage'));
  526.                     }
  527.                     return $ret;
  528.                 }
  529.                 not_kullanici_homepage:
  530.                 // kullanici_kaydet
  531.                 if ('/seven/kullanici/kaydet' === $pathinfo) {
  532.                     return array (  '_controller' => 'PanelBundle\\Controller\\KullaniciController::kaydetAction',  '_route' => 'kullanici_kaydet',);
  533.                 }
  534.                 if (=== strpos($pathinfo'/seven/kullanicilar')) {
  535.                     // kullanicilar_homepage
  536.                     if ('/seven/kullanicilar' === $trimmedPathinfo) {
  537.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::indexAction',  '_route' => 'kullanicilar_homepage',);
  538.                         if ('/' === substr($pathinfo, -1)) {
  539.                             // no-op
  540.                         } elseif ('GET' !== $canonicalMethod) {
  541.                             goto not_kullanicilar_homepage;
  542.                         } else {
  543.                             return array_replace($ret$this->redirect($rawPathinfo.'/''kullanicilar_homepage'));
  544.                         }
  545.                         return $ret;
  546.                     }
  547.                     not_kullanicilar_homepage:
  548.                     // kullanicilar_getir
  549.                     if ('/seven/kullanicilar/getir' === $pathinfo) {
  550.                         return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::getirAction',  '_route' => 'kullanicilar_getir',);
  551.                     }
  552.                     // kullanicilar_ekle
  553.                     if ('/seven/kullanicilar/ekle' === $pathinfo) {
  554.                         return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::ekleAction',  '_route' => 'kullanicilar_ekle',);
  555.                     }
  556.                     if (=== strpos($pathinfo'/seven/kullanicilar/duzenle')) {
  557.                         // kullanicilar_duzenleAc
  558.                         if ('/seven/kullanicilar/duzenleAc' === $pathinfo) {
  559.                             return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::duzenleAcAction',  '_route' => 'kullanicilar_duzenleAc',);
  560.                         }
  561.                         // kullanicilar_duzenle
  562.                         if ('/seven/kullanicilar/duzenle' === $pathinfo) {
  563.                             return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::duzenleAction',  '_route' => 'kullanicilar_duzenle',);
  564.                         }
  565.                     }
  566.                     // kullanicilar_sil
  567.                     if ('/seven/kullanicilar/sil' === $pathinfo) {
  568.                         return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::silAction',  '_route' => 'kullanicilar_sil',);
  569.                     }
  570.                     if (=== strpos($pathinfo'/seven/kullanicilar/yetkiler')) {
  571.                         // kullanicilar_yetkilerAc
  572.                         if ('/seven/kullanicilar/yetkilerAc' === $pathinfo) {
  573.                             return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::yetkilerAcAction',  '_route' => 'kullanicilar_yetkilerAc',);
  574.                         }
  575.                         // kullanicilar_yetkiler
  576.                         if ('/seven/kullanicilar/yetkiler' === $pathinfo) {
  577.                             return array (  '_controller' => 'PanelBundle\\Controller\\KullanicilarController::yetkilerAction',  '_route' => 'kullanicilar_yetkiler',);
  578.                         }
  579.                     }
  580.                 }
  581.             }
  582.             elseif (=== strpos($pathinfo'/seven/kategori')) {
  583.                 // kategori_homepage
  584.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/?$#sD'$pathinfo$matches)) {
  585.                     $ret $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_homepage']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::indexAction',));
  586.                     if ('/' === substr($pathinfo, -1)) {
  587.                         // no-op
  588.                     } elseif ('GET' !== $canonicalMethod) {
  589.                         goto not_kategori_homepage;
  590.                     } else {
  591.                         return array_replace($ret$this->redirect($rawPathinfo.'/''kategori_homepage'));
  592.                     }
  593.                     return $ret;
  594.                 }
  595.                 not_kategori_homepage:
  596.                 // kategori_getir
  597.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/getir$#sD'$pathinfo$matches)) {
  598.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_getir']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::getirAction',));
  599.                 }
  600.                 // kategori_ekle
  601.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/ekle$#sD'$pathinfo$matches)) {
  602.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_ekle']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::ekleAction',));
  603.                 }
  604.                 // kategori_duzenleAc
  605.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/duzenleAc$#sD'$pathinfo$matches)) {
  606.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_duzenleAc']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::duzenleAcAction',));
  607.                 }
  608.                 // kategori_duzenle
  609.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/duzenle$#sD'$pathinfo$matches)) {
  610.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_duzenle']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::duzenleAction',));
  611.                 }
  612.                 // kategori_seoAyarAc
  613.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/seoAyarAc$#sD'$pathinfo$matches)) {
  614.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_seoAyarAc']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::seoAyarAcAction',));
  615.                 }
  616.                 // kategori_seoAyar
  617.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/seoAyar$#sD'$pathinfo$matches)) {
  618.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_seoAyar']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::seoAyarAction',));
  619.                 }
  620.                 // kategori_sil
  621.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/sil$#sD'$pathinfo$matches)) {
  622.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_sil']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::silAction',));
  623.                 }
  624.                 // kategori_sirala
  625.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/sirala$#sD'$pathinfo$matches)) {
  626.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_sirala']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::siralaAction',));
  627.                 }
  628.                 // kategori_temizle
  629.                 if (preg_match('#^/seven/kategori/(?P<dilgrup>[^/]++)/temizle$#sD'$pathinfo$matches)) {
  630.                     return $this->mergeDefaults(array_replace($matches, ['_route' => 'kategori_temizle']), array (  '_controller' => 'PanelBundle\\Controller\\KategoriController::temizleAction',));
  631.                 }
  632.             }
  633.             elseif (=== strpos($pathinfo'/seven/s')) {
  634.                 if (=== strpos($pathinfo'/seven/sosyal_ag')) {
  635.                     // sosyal_ag_homepage
  636.                     if ('/seven/sosyal_ag' === $trimmedPathinfo) {
  637.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\SosyalAgController::indexAction',  '_route' => 'sosyal_ag_homepage',);
  638.                         if ('/' === substr($pathinfo, -1)) {
  639.                             // no-op
  640.                         } elseif ('GET' !== $canonicalMethod) {
  641.                             goto not_sosyal_ag_homepage;
  642.                         } else {
  643.                             return array_replace($ret$this->redirect($rawPathinfo.'/''sosyal_ag_homepage'));
  644.                         }
  645.                         return $ret;
  646.                     }
  647.                     not_sosyal_ag_homepage:
  648.                     // sosyal_ag_kaydet
  649.                     if ('/seven/sosyal_ag/kaydet' === $pathinfo) {
  650.                         return array (  '_controller' => 'PanelBundle\\Controller\\SosyalAgController::kaydetAction',  '_route' => 'sosyal_ag_kaydet',);
  651.                     }
  652.                 }
  653.                 elseif (=== strpos($pathinfo'/seven/sayfa')) {
  654.                     // sayfa_homepage
  655.                     if ('/seven/sayfa' === $trimmedPathinfo) {
  656.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::indexAction',  '_route' => 'sayfa_homepage',);
  657.                         if ('/' === substr($pathinfo, -1)) {
  658.                             // no-op
  659.                         } elseif ('GET' !== $canonicalMethod) {
  660.                             goto not_sayfa_homepage;
  661.                         } else {
  662.                             return array_replace($ret$this->redirect($rawPathinfo.'/''sayfa_homepage'));
  663.                         }
  664.                         return $ret;
  665.                     }
  666.                     not_sayfa_homepage:
  667.                     // sayfa_getir
  668.                     if ('/seven/sayfa/getir' === $pathinfo) {
  669.                         return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::getirAction',  '_route' => 'sayfa_getir',);
  670.                     }
  671.                     // sayfa_ekle
  672.                     if ('/seven/sayfa/ekle' === $pathinfo) {
  673.                         return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::ekleAction',  '_route' => 'sayfa_ekle',);
  674.                     }
  675.                     if (=== strpos($pathinfo'/seven/sayfa/duzenle')) {
  676.                         // sayfa_duzenleAc
  677.                         if ('/seven/sayfa/duzenleAc' === $pathinfo) {
  678.                             return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::duzenleAcAction',  '_route' => 'sayfa_duzenleAc',);
  679.                         }
  680.                         // sayfa_duzenle
  681.                         if ('/seven/sayfa/duzenle' === $pathinfo) {
  682.                             return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::duzenleAction',  '_route' => 'sayfa_duzenle',);
  683.                         }
  684.                     }
  685.                     elseif (=== strpos($pathinfo'/seven/sayfa/s')) {
  686.                         if (=== strpos($pathinfo'/seven/sayfa/seoAyar')) {
  687.                             // sayfa_seoAyarAc
  688.                             if ('/seven/sayfa/seoAyarAc' === $pathinfo) {
  689.                                 return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::seoAyarAcAction',  '_route' => 'sayfa_seoAyarAc',);
  690.                             }
  691.                             // sayfa_seoAyar
  692.                             if ('/seven/sayfa/seoAyar' === $pathinfo) {
  693.                                 return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::seoAyarAction',  '_route' => 'sayfa_seoAyar',);
  694.                             }
  695.                         }
  696.                         // sayfa_sil
  697.                         if ('/seven/sayfa/sil' === $pathinfo) {
  698.                             return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::silAction',  '_route' => 'sayfa_sil',);
  699.                         }
  700.                         // sayfa_sirala
  701.                         if ('/seven/sayfa/sirala' === $pathinfo) {
  702.                             return array (  '_controller' => 'PanelBundle\\Controller\\SayfaController::siralaAction',  '_route' => 'sayfa_sirala',);
  703.                         }
  704.                     }
  705.                 }
  706.                 elseif (=== strpos($pathinfo'/seven/single-content')) {
  707.                     // tekveri_homepage
  708.                     if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/?$#sD'$pathinfo$matches)) {
  709.                         $ret $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_homepage']), array (  '_controller' => 'PanelBundle\\Controller\\TekVeriController::indexAction',));
  710.                         if ('/' === substr($pathinfo, -1)) {
  711.                             // no-op
  712.                         } elseif ('GET' !== $canonicalMethod) {
  713.                             goto not_tekveri_homepage;
  714.                         } else {
  715.                             return array_replace($ret$this->redirect($rawPathinfo.'/''tekveri_homepage'));
  716.                         }
  717.                         return $ret;
  718.                     }
  719.                     not_tekveri_homepage:
  720.                     // tekveri_kaydet
  721.                     if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/kaydet/(?P<vDilgrup>[^/]++)$#sD'$pathinfo$matches)) {
  722.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_kaydet']), array (  '_controller' => 'PanelBundle\\Controller\\TekVeriController::kaydetAction',));
  723.                     }
  724.                     // tekveri_gorsel_sil
  725.                     if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/image\\-delete$#sD'$pathinfo$matches)) {
  726.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_gorsel_sil']), array (  '_controller' => 'PanelBundle\\Controller\\TekVeriController::gorsel_silAction',));
  727.                     }
  728.                     // tekveri_gorsel_sirala
  729.                     if (preg_match('#^/seven/single\\-content/(?P<dilgrup>[^/]++)/image\\-sort$#sD'$pathinfo$matches)) {
  730.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'tekveri_gorsel_sirala']), array (  '_controller' => 'PanelBundle\\Controller\\TekVeriController::gorsel_siralaAction',));
  731.                     }
  732.                 }
  733.                 elseif (=== strpos($pathinfo'/seven/slider')) {
  734.                     // slider_homepage
  735.                     if ('/seven/slider' === $trimmedPathinfo) {
  736.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\SliderController::indexAction',  '_route' => 'slider_homepage',);
  737.                         if ('/' === substr($pathinfo, -1)) {
  738.                             // no-op
  739.                         } elseif ('GET' !== $canonicalMethod) {
  740.                             goto not_slider_homepage;
  741.                         } else {
  742.                             return array_replace($ret$this->redirect($rawPathinfo.'/''slider_homepage'));
  743.                         }
  744.                         return $ret;
  745.                     }
  746.                     not_slider_homepage:
  747.                     // slider_getir
  748.                     if ('/seven/slider/getir' === $pathinfo) {
  749.                         return array (  '_controller' => 'PanelBundle\\Controller\\SliderController::getirAction',  '_route' => 'slider_getir',);
  750.                     }
  751.                     // slider_ekle
  752.                     if ('/seven/slider/ekle' === $pathinfo) {
  753.                         return array (  '_controller' => 'PanelBundle\\Controller\\SliderController::ekleAction',  '_route' => 'slider_ekle',);
  754.                     }
  755.                     if (=== strpos($pathinfo'/seven/slider/duzenle')) {
  756.                         // slider_duzenleAc
  757.                         if ('/seven/slider/duzenleAc' === $pathinfo) {
  758.                             return array (  '_controller' => 'PanelBundle\\Controller\\SliderController::duzenleAcAction',  '_route' => 'slider_duzenleAc',);
  759.                         }
  760.                         // slider_duzenle
  761.                         if ('/seven/slider/duzenle' === $pathinfo) {
  762.                             return array (  '_controller' => 'PanelBundle\\Controller\\SliderController::duzenleAction',  '_route' => 'slider_duzenle',);
  763.                         }
  764.                     }
  765.                     // slider_sil
  766.                     if ('/seven/slider/sil' === $pathinfo) {
  767.                         return array (  '_controller' => 'PanelBundle\\Controller\\SliderController::silAction',  '_route' => 'slider_sil',);
  768.                     }
  769.                     // slider_sirala
  770.                     if ('/seven/slider/sirala' === $pathinfo) {
  771.                         return array (  '_controller' => 'PanelBundle\\Controller\\SliderController::siralaAction',  '_route' => 'slider_sirala',);
  772.                     }
  773.                 }
  774.             }
  775.             elseif (=== strpos($pathinfo'/seven/m')) {
  776.                 if (=== strpos($pathinfo'/seven/modul')) {
  777.                     // modul_homepage
  778.                     if ('/seven/modul' === $trimmedPathinfo) {
  779.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\ModulController::indexAction',  '_route' => 'modul_homepage',);
  780.                         if ('/' === substr($pathinfo, -1)) {
  781.                             // no-op
  782.                         } elseif ('GET' !== $canonicalMethod) {
  783.                             goto not_modul_homepage;
  784.                         } else {
  785.                             return array_replace($ret$this->redirect($rawPathinfo.'/''modul_homepage'));
  786.                         }
  787.                         return $ret;
  788.                     }
  789.                     not_modul_homepage:
  790.                     // modul_getir
  791.                     if ('/seven/modul/getir' === $pathinfo) {
  792.                         return array (  '_controller' => 'PanelBundle\\Controller\\ModulController::getirAction',  '_route' => 'modul_getir',);
  793.                     }
  794.                     // modul_ekle
  795.                     if ('/seven/modul/ekle' === $pathinfo) {
  796.                         return array (  '_controller' => 'PanelBundle\\Controller\\ModulController::ekleAction',  '_route' => 'modul_ekle',);
  797.                     }
  798.                     if (=== strpos($pathinfo'/seven/modul/duzenle')) {
  799.                         // modul_duzenleAc
  800.                         if ('/seven/modul/duzenleAc' === $pathinfo) {
  801.                             return array (  '_controller' => 'PanelBundle\\Controller\\ModulController::duzenleAcAction',  '_route' => 'modul_duzenleAc',);
  802.                         }
  803.                         // modul_duzenle
  804.                         if ('/seven/modul/duzenle' === $pathinfo) {
  805.                             return array (  '_controller' => 'PanelBundle\\Controller\\ModulController::duzenleAction',  '_route' => 'modul_duzenle',);
  806.                         }
  807.                     }
  808.                     // modul_sil
  809.                     if ('/seven/modul/sil' === $pathinfo) {
  810.                         return array (  '_controller' => 'PanelBundle\\Controller\\ModulController::silAction',  '_route' => 'modul_sil',);
  811.                     }
  812.                 }
  813.                 elseif (=== strpos($pathinfo'/seven/multi-content')) {
  814.                     // cokveri_homepage
  815.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/?$#sD'$pathinfo$matches)) {
  816.                         $ret $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_homepage']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::indexAction',));
  817.                         if ('/' === substr($pathinfo, -1)) {
  818.                             // no-op
  819.                         } elseif ('GET' !== $canonicalMethod) {
  820.                             goto not_cokveri_homepage;
  821.                         } else {
  822.                             return array_replace($ret$this->redirect($rawPathinfo.'/''cokveri_homepage'));
  823.                         }
  824.                         return $ret;
  825.                     }
  826.                     not_cokveri_homepage:
  827.                     // cokveri_getir
  828.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/getir$#sD'$pathinfo$matches)) {
  829.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_getir']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::getirAction',));
  830.                     }
  831.                     // cokveri_ekle
  832.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/add$#sD'$pathinfo$matches)) {
  833.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_ekle']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::ekleAction',));
  834.                     }
  835.                     // cokveri_ekle_kaydet
  836.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/add\\-save$#sD'$pathinfo$matches)) {
  837.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_ekle_kaydet']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::ekle_kaydetAction',));
  838.                     }
  839.                     // cokveri_duzenle
  840.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/edit/(?P<vDilgrup>[^/]++)$#sD'$pathinfo$matches)) {
  841.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_duzenle']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::duzenleAction',));
  842.                     }
  843.                     // cokveri_duzenle_kaydet
  844.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/edit/(?P<vDilgrup>[^/]++)/save$#sD'$pathinfo$matches)) {
  845.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_duzenle_kaydet']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::duzenle_kaydetAction',));
  846.                     }
  847.                     // cokveri_sil
  848.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/delete$#sD'$pathinfo$matches)) {
  849.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_sil']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::silAction',));
  850.                     }
  851.                     // cokveri_sirala
  852.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/sort$#sD'$pathinfo$matches)) {
  853.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_sirala']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::siralaAction',));
  854.                     }
  855.                     // cokveri_gorsel_sil
  856.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/image\\-delete$#sD'$pathinfo$matches)) {
  857.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_gorsel_sil']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::gorsel_silAction',));
  858.                     }
  859.                     // cokveri_gorsel_sirala
  860.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/image\\-sort$#sD'$pathinfo$matches)) {
  861.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_gorsel_sirala']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::gorsel_siralaAction',));
  862.                     }
  863.                     // cokveri_temizle
  864.                     if (preg_match('#^/seven/multi\\-content/(?P<dilgrup>[^/]++)/temizle$#sD'$pathinfo$matches)) {
  865.                         return $this->mergeDefaults(array_replace($matches, ['_route' => 'cokveri_temizle']), array (  '_controller' => 'PanelBundle\\Controller\\CokVeriController::temizleAction',));
  866.                     }
  867.                 }
  868.                 elseif (=== strpos($pathinfo'/seven/mesajlar')) {
  869.                     // mesajlar_homepage
  870.                     if ('/seven/mesajlar' === $trimmedPathinfo) {
  871.                         $ret = array (  '_controller' => 'PanelBundle\\Controller\\MesajlarController::indexAction',  '_route' => 'mesajlar_homepage',);
  872.                         if ('/' === substr($pathinfo, -1)) {
  873.                             // no-op
  874.                         } elseif ('GET' !== $canonicalMethod) {
  875.                             goto not_mesajlar_homepage;
  876.                         } else {
  877.                             return array_replace($ret$this->redirect($rawPathinfo.'/''mesajlar_homepage'));
  878.                         }
  879.                         return $ret;
  880.                     }
  881.                     not_mesajlar_homepage:
  882.                     // mesajlar_getir
  883.                     if ('/seven/mesajlar/getir' === $pathinfo) {
  884.                         return array (  '_controller' => 'PanelBundle\\Controller\\MesajlarController::getirAction',  '_route' => 'mesajlar_getir',);
  885.                     }
  886.                     // mesajlar_oku
  887.                     if ('/seven/mesajlar/oku' === $pathinfo) {
  888.                         return array (  '_controller' => 'PanelBundle\\Controller\\MesajlarController::okuAction',  '_route' => 'mesajlar_oku',);
  889.                     }
  890.                     // mesajlar_sil
  891.                     if ('/seven/mesajlar/sil' === $pathinfo) {
  892.                         return array (  '_controller' => 'PanelBundle\\Controller\\MesajlarController::silAction',  '_route' => 'mesajlar_sil',);
  893.                     }
  894.                 }
  895.             }
  896.             elseif (=== strpos($pathinfo'/seven/form')) {
  897.                 // form_homepage
  898.                 if ('/seven/form' === $trimmedPathinfo) {
  899.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\FormController::indexAction',  '_route' => 'form_homepage',);
  900.                     if ('/' === substr($pathinfo, -1)) {
  901.                         // no-op
  902.                     } elseif ('GET' !== $canonicalMethod) {
  903.                         goto not_form_homepage;
  904.                     } else {
  905.                         return array_replace($ret$this->redirect($rawPathinfo.'/''form_homepage'));
  906.                     }
  907.                     return $ret;
  908.                 }
  909.                 not_form_homepage:
  910.                 // form_getir
  911.                 if ('/seven/form/getir' === $pathinfo) {
  912.                     return array (  '_controller' => 'PanelBundle\\Controller\\FormController::getirAction',  '_route' => 'form_getir',);
  913.                 }
  914.                 // form_ekle
  915.                 if ('/seven/form/ekle' === $pathinfo) {
  916.                     return array (  '_controller' => 'PanelBundle\\Controller\\FormController::ekleAction',  '_route' => 'form_ekle',);
  917.                 }
  918.                 // form_sil
  919.                 if ('/seven/form/sil' === $pathinfo) {
  920.                     return array (  '_controller' => 'PanelBundle\\Controller\\FormController::silAction',  '_route' => 'form_sil',);
  921.                 }
  922.             }
  923.             elseif (=== strpos($pathinfo'/seven/bildirimler')) {
  924.                 // bildirimler_homepage
  925.                 if ('/seven/bildirimler' === $trimmedPathinfo) {
  926.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\BildirimlerController::indexAction',  '_route' => 'bildirimler_homepage',);
  927.                     if ('/' === substr($pathinfo, -1)) {
  928.                         // no-op
  929.                     } elseif ('GET' !== $canonicalMethod) {
  930.                         goto not_bildirimler_homepage;
  931.                     } else {
  932.                         return array_replace($ret$this->redirect($rawPathinfo.'/''bildirimler_homepage'));
  933.                     }
  934.                     return $ret;
  935.                 }
  936.                 not_bildirimler_homepage:
  937.                 // bildirimler_getir
  938.                 if ('/seven/bildirimler/getir' === $pathinfo) {
  939.                     return array (  '_controller' => 'PanelBundle\\Controller\\BildirimlerController::getirAction',  '_route' => 'bildirimler_getir',);
  940.                 }
  941.                 // bildirimler_sil
  942.                 if ('/seven/bildirimler/sil' === $pathinfo) {
  943.                     return array (  '_controller' => 'PanelBundle\\Controller\\BildirimlerController::silAction',  '_route' => 'bildirimler_sil',);
  944.                 }
  945.             }
  946.             elseif (=== strpos($pathinfo'/seven/villa-kategori')) {
  947.                 // villa_kategori_homepage
  948.                 if ('/seven/villa-kategori' === $trimmedPathinfo) {
  949.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::indexAction',  '_route' => 'villa_kategori_homepage',);
  950.                     if ('/' === substr($pathinfo, -1)) {
  951.                         // no-op
  952.                     } elseif ('GET' !== $canonicalMethod) {
  953.                         goto not_villa_kategori_homepage;
  954.                     } else {
  955.                         return array_replace($ret$this->redirect($rawPathinfo.'/''villa_kategori_homepage'));
  956.                     }
  957.                     return $ret;
  958.                 }
  959.                 not_villa_kategori_homepage:
  960.                 // villa_kategori_getir
  961.                 if ('/seven/villa-kategori/getir' === $pathinfo) {
  962.                     return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::getirAction',  '_route' => 'villa_kategori_getir',);
  963.                 }
  964.                 // villa_kategori_ekle
  965.                 if ('/seven/villa-kategori/ekle' === $pathinfo) {
  966.                     return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::ekleAction',  '_route' => 'villa_kategori_ekle',);
  967.                 }
  968.                 if (=== strpos($pathinfo'/seven/villa-kategori/duzenle')) {
  969.                     // villa_kategori_duzenleAc
  970.                     if ('/seven/villa-kategori/duzenleAc' === $pathinfo) {
  971.                         return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::duzenleAcAction',  '_route' => 'villa_kategori_duzenleAc',);
  972.                     }
  973.                     // villa_kategori_duzenle
  974.                     if ('/seven/villa-kategori/duzenle' === $pathinfo) {
  975.                         return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::duzenleAction',  '_route' => 'villa_kategori_duzenle',);
  976.                     }
  977.                 }
  978.                 elseif (=== strpos($pathinfo'/seven/villa-kategori/s')) {
  979.                     if (=== strpos($pathinfo'/seven/villa-kategori/seoAyar')) {
  980.                         // villa_kategori_seoAyarAc
  981.                         if ('/seven/villa-kategori/seoAyarAc' === $pathinfo) {
  982.                             return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::seoAyarAcAction',  '_route' => 'villa_kategori_seoAyarAc',);
  983.                         }
  984.                         // villa_kategori_seoAyar
  985.                         if ('/seven/villa-kategori/seoAyar' === $pathinfo) {
  986.                             return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::seoAyarAction',  '_route' => 'villa_kategori_seoAyar',);
  987.                         }
  988.                     }
  989.                     // villa_kategori_sil
  990.                     if ('/seven/villa-kategori/sil' === $pathinfo) {
  991.                         return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::silAction',  '_route' => 'villa_kategori_sil',);
  992.                     }
  993.                     // villa_kategori_sirala
  994.                     if ('/seven/villa-kategori/sirala' === $pathinfo) {
  995.                         return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::siralaAction',  '_route' => 'villa_kategori_sirala',);
  996.                     }
  997.                 }
  998.                 // villa_kategori_temizle
  999.                 if ('/seven/villa-kategori/temizle' === $pathinfo) {
  1000.                     return array (  '_controller' => 'PanelBundle\\Controller\\VillaKategoriController::temizleAction',  '_route' => 'villa_kategori_temizle',);
  1001.                 }
  1002.             }
  1003.             elseif (=== strpos($pathinfo'/seven/ozellik')) {
  1004.                 // ozellik_homepage
  1005.                 if ('/seven/ozellik' === $trimmedPathinfo) {
  1006.                     $ret = array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::indexAction',  '_route' => 'ozellik_homepage',);
  1007.                     if ('/' === substr($pathinfo, -1)) {
  1008.                         // no-op
  1009.                     } elseif ('GET' !== $canonicalMethod) {
  1010.                         goto not_ozellik_homepage;
  1011.                     } else {
  1012.                         return array_replace($ret$this->redirect($rawPathinfo.'/''ozellik_homepage'));
  1013.                     }
  1014.                     return $ret;
  1015.                 }
  1016.                 not_ozellik_homepage:
  1017.                 // ozellik_getir
  1018.                 if ('/seven/ozellik/getir' === $pathinfo) {
  1019.                     return array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::getirAction',  '_route' => 'ozellik_getir',);
  1020.                 }
  1021.                 // ozellik_ekle
  1022.                 if ('/seven/ozellik/ekle' === $pathinfo) {
  1023.                     return array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::ekleAction',  '_route' => 'ozellik_ekle',);
  1024.                 }
  1025.                 if (=== strpos($pathinfo'/seven/ozellik/duzenle')) {
  1026.                     // ozellik_duzenleAc
  1027.                     if ('/seven/ozellik/duzenleAc' === $pathinfo) {
  1028.                         return array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::duzenleAcAction',  '_route' => 'ozellik_duzenleAc',);
  1029.                     }
  1030.                     // ozellik_duzenle
  1031.                     if ('/seven/ozellik/duzenle' === $pathinfo) {
  1032.                         return array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::duzenleAction',  '_route' => 'ozellik_duzenle',);
  1033.                     }
  1034.                 }
  1035.                 // ozellik_sil
  1036.                 if ('/seven/ozellik/sil' === $pathinfo) {
  1037.                     return array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::silAction',  '_route' => 'ozellik_sil',);
  1038.                 }
  1039.                 // ozellik_sirala
  1040.                 if ('/seven/ozellik/sirala' === $pathinfo) {
  1041.                     return array (  '_controller' => 'PanelBundle\\Controller\\OzellikController::siralaAction',  '_route' => 'ozellik_sirala',);
  1042.                 }
  1043.             }
  1044.         }
  1045.         // site_map
  1046.         if ('/sitemap.xml' === $pathinfo) {
  1047.             return array (  '_controller' => 'SiteBundle\\Controller\\SitemapController::indexAction',  '_route' => 'site_map',);
  1048.         }
  1049.         // site_homepage
  1050.         if ('' === $trimmedPathinfo) {
  1051.             $ret = array (  '_controller' => 'SiteBundle\\Controller\\SiteController::indexAction',  '_route' => 'site_homepage',);
  1052.             if ('/' === substr($pathinfo, -1)) {
  1053.                 // no-op
  1054.             } elseif ('GET' !== $canonicalMethod) {
  1055.                 goto not_site_homepage;
  1056.             } else {
  1057.                 return array_replace($ret$this->redirect($rawPathinfo.'/''site_homepage'));
  1058.             }
  1059.             return $ret;
  1060.         }
  1061.         not_site_homepage:
  1062.         // site_formKayit
  1063.         if ('/form-kayit' === $pathinfo) {
  1064.             return array (  '_controller' => 'SiteBundle\\Controller\\SiteController::formKayitAction',  '_route' => 'site_formKayit',);
  1065.         }
  1066.         // site_ilanGetir
  1067.         if ('/ilan-getir' === $pathinfo) {
  1068.             return array (  '_controller' => 'SiteBundle\\Controller\\SiteController::ilanGetirAction',  '_route' => 'site_ilanGetir',);
  1069.         }
  1070.         // site_hizliArama
  1071.         if ('/hizli-arama' === $pathinfo) {
  1072.             return array (  '_controller' => 'SiteBundle\\Controller\\SiteController::hizliAramaAction',  '_route' => 'site_hizliArama',);
  1073.         }
  1074.         // site_talepGonder
  1075.         if ('/talep-gonder' === $pathinfo) {
  1076.             return array (  '_controller' => 'SiteBundle\\Controller\\SiteController::talepGonderAction',  '_route' => 'site_talepGonder',);
  1077.         }
  1078.         // site_sayfa1
  1079.         if (preg_match('#^/(?P<seo1>[^/]++)$#sD'$pathinfo$matches)) {
  1080.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa1']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1081.         }
  1082.         // site_sayfa2
  1083.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)$#sD'$pathinfo$matches)) {
  1084.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa2']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1085.         }
  1086.         // site_sayfa3
  1087.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)$#sD'$pathinfo$matches)) {
  1088.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa3']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1089.         }
  1090.         // site_sayfa4
  1091.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)$#sD'$pathinfo$matches)) {
  1092.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa4']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1093.         }
  1094.         // site_sayfa5
  1095.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)$#sD'$pathinfo$matches)) {
  1096.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa5']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1097.         }
  1098.         // site_sayfa6
  1099.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)$#sD'$pathinfo$matches)) {
  1100.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa6']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1101.         }
  1102.         // site_sayfa7
  1103.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)$#sD'$pathinfo$matches)) {
  1104.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa7']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1105.         }
  1106.         // site_sayfa8
  1107.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)$#sD'$pathinfo$matches)) {
  1108.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa8']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1109.         }
  1110.         // site_sayfa9
  1111.         if (preg_match('#^/(?P<seo1>[^/]++)/(?P<seo2>[^/]++)/(?P<seo3>[^/]++)/(?P<seo4>[^/]++)/(?P<seo5>[^/]++)/(?P<seo6>[^/]++)/(?P<seo7>[^/]++)/(?P<seo8>[^/]++)/(?P<seo9>[^/]++)$#sD'$pathinfo$matches)) {
  1112.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa9']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1113.         }
  1114.         // site_sayfa10
  1115.         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)) {
  1116.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa10']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1117.         }
  1118.         // site_sayfa11
  1119.         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)) {
  1120.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa11']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1121.         }
  1122.         // site_sayfa12
  1123.         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)) {
  1124.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa12']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1125.         }
  1126.         // site_sayfa13
  1127.         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)) {
  1128.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa13']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1129.         }
  1130.         // site_sayfa14
  1131.         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)) {
  1132.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa14']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1133.         }
  1134.         // site_sayfa15
  1135.         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)) {
  1136.             return $this->mergeDefaults(array_replace($matches, ['_route' => 'site_sayfa15']), array (  '_controller' => 'SiteBundle\\Controller\\SiteController::sayfaAction',));
  1137.         }
  1138.         if ('/' === $pathinfo && !$allow) {
  1139.             throw new Symfony\Component\Routing\Exception\NoConfigurationException();
  1140.         }
  1141.         throw count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException();
  1142.     }
  1143. }