app/Customize/Controller/TopController.php line 62

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Customize\Controller;
  13. use Customize\Repository\InformationRepository;
  14. use Eccube\Repository\ProductRepository;
  15. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  16. use Symfony\Component\Routing\Annotation\Route;
  17. use Eccube\Controller\AbstractController;
  18. use Customize\Repository\TopSlidePanelRepository;
  19. use Customize\Repository\SpecialArticleRepository;
  20. class TopController extends AbstractController
  21. {
  22.     /**
  23.      * @var TopSlidePanelRepository
  24.      */
  25.     protected $topSlidePanelRepository;
  26.     /**
  27.      * @var SpecialArticleRepository
  28.      */
  29.     protected $specialArticleRepository;
  30.     /**
  31.      * @var InformationRepository
  32.      */
  33.     protected $informationRepository;
  34.     /**
  35.      * @var ProductRepository
  36.      */
  37.     protected $productRepository;
  38.     public function __construct(
  39.         TopSlidePanelRepository $topSlidePanelRepository,
  40.         SpecialArticleRepository $specialArticleRepository,
  41.         InformationRepository $informationRepository,
  42.         ProductRepository  $productRepository
  43.     ) {
  44.         $this->topSlidePanelRepository $topSlidePanelRepository;
  45.         $this->specialArticleRepository $specialArticleRepository;
  46.         $this->informationRepository $informationRepository;
  47.         $this->productRepository $productRepository;
  48.     }
  49.     /**
  50.      * @Route("/", name="homepage", methods={"GET"})
  51.      * @Template("index.twig")
  52.      */
  53.     public function index(): array
  54.     {
  55.         $Customer $this->getUser();
  56.         $topSlidePanels $this->topSlidePanelRepository->getsortslidedate();
  57.         $specialArticles $this->specialArticleRepository->getSortSpecialArticleTop();
  58.         $importantNews $this->informationRepository->getImportantNews();
  59.         $informations $this->informationRepository->getInformation();
  60.         $informationRoute $this->generateUrl('information');
  61.         $specialRoute $this->generateUrl('special');
  62.         //RECOMMEND ITEMS取得
  63.         $results $this->productRepository->createQueryBuilder('p')
  64.             ->addSelect('pc')
  65.             ->innerJoin('p.ProductClasses''pc')
  66.             ->innerJoin('p.ProductCategories''pct')
  67.             ->innerJoin('pct.Category''c')
  68.             ->where('p.del_flg = 0')
  69.             ->andWhere('p.Status = 1')
  70.             ->getQuery()
  71.             ->getResult();
  72.         // 商品名で判別しているので変更ないか注意
  73.         $willard_lotion null;
  74.         $willard_gel null;
  75.         $willard_cream null;
  76.         foreach ($results as $result) {
  77.             if ($result['name'] === 'Dr.ウィラード・ウォーター化粧水') {
  78.                 $willard_lotion $result;
  79.                 continue;
  80.             } elseif ($result['name'] === 'Dr.ウィラード・ウォーター保湿ジェル') {
  81.                 $willard_gel $result;
  82.                 continue;
  83.             } elseif ($result['name'] === 'Dr.ウィラード・ウォーター保湿クリーム') {
  84.                 $willard_cream $result;
  85.                 continue;
  86.             }
  87.         }
  88.         return [
  89.             'topSlidePanels' => $topSlidePanels,
  90.             'specialArticles' => $specialArticles,
  91.             'importantNews' => $importantNews,
  92.             'informations' => $informations,
  93.             'informationRoute' => $informationRoute,
  94.             'specialRoute' =>$specialRoute,
  95.             'WillardLotion' => $willard_lotion,
  96.             'WillardGel' => $willard_gel,
  97.             'WillardCream' => $willard_cream,
  98.             'customer' => $Customer,
  99.         ];
  100.     }
  101. }