src/Controller/BlogController.php line 24

  1. <?php
  2. namespace App\Controller;
  3. use App\Services\DbBlog;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\Routing\Annotation\Route;
  7. use Symfony\Contracts\Translation\TranslatorInterface;
  8. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  9. class BlogController extends AbstractController
  10. {
  11.     #[Route(
  12.         path: ['fr' => '/{_locale}/blog/{link}-{id}''en' => '/{_locale}/blog/{link}-{id}'], 
  13.         name'blog_content'
  14.         requirements: [
  15.             '_locale' => 'en|fr',
  16.             'link' => '.+?(?=-(b|c)\d{1,4}$)',
  17.             'id' => '(b|c)\d{1,4}'
  18.         ], 
  19.         priority2
  20.     )]
  21.     public function blog_content(Request $requestDbBlog $dbBlog$link null$id null): Response
  22.     {
  23.         $contents $dbBlog->getContent($link$request->getLocale());
  24.         $link $dbBlog->getLink($contents[0]['id_leoblog_blog'], $request);
  25.         $breadcrumb = array(['name' => 'Blog''link_rewrite' => 'blog'], ['name' => $contents[0]['catTitle'], 'link_rewrite' => $contents[0]['catLink']."-c".$contents[0]['id_leoblogcat']]);
  26.         return $this->render('blog/blogcontent.html.twig', ['contents' => $contents'link' => $link'breadcrumb' => $breadcrumb]);
  27.     }
  28.     #[Route(path'/{_locale}/blog'name'blog'priority3)]
  29.     public function blog(Request $requestDbBlog $dbBlog): Response
  30.     {
  31.         $contents "";
  32.         $altLang $request->getLocale() == "fr" "en" "fr";
  33.         $endUrl $this->generateUrl('blog', ["_locale" => $altLang]);
  34.         $menus $dbBlog->getMenu($request->getLocale());
  35.         $cards $dbBlog->getCard($request->getLocale());
  36.         $breadcrumb = array(['name' => 'Blog''link_rewrite' => 'blog']);
  37.         
  38.         return $this->render('blog/blog.html.twig', ['cards' => $cards'link' => $endUrl'menus' => $menus'breadcrumb' => $breadcrumb ]);
  39.     }
  40. }
  41. ?>