<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Customize\Controller;
use Customize\Repository\InformationRepository;
use Eccube\Repository\ProductRepository;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Symfony\Component\Routing\Annotation\Route;
use Eccube\Controller\AbstractController;
use Customize\Repository\TopSlidePanelRepository;
use Customize\Repository\SpecialArticleRepository;
class TopController extends AbstractController
{
/**
* @var TopSlidePanelRepository
*/
protected $topSlidePanelRepository;
/**
* @var SpecialArticleRepository
*/
protected $specialArticleRepository;
/**
* @var InformationRepository
*/
protected $informationRepository;
/**
* @var ProductRepository
*/
protected $productRepository;
public function __construct(
TopSlidePanelRepository $topSlidePanelRepository,
SpecialArticleRepository $specialArticleRepository,
InformationRepository $informationRepository,
ProductRepository $productRepository
) {
$this->topSlidePanelRepository = $topSlidePanelRepository;
$this->specialArticleRepository = $specialArticleRepository;
$this->informationRepository = $informationRepository;
$this->productRepository = $productRepository;
}
/**
* @Route("/", name="homepage", methods={"GET"})
* @Template("index.twig")
*/
public function index(): array
{
$Customer = $this->getUser();
$topSlidePanels = $this->topSlidePanelRepository->getsortslidedate();
$specialArticles = $this->specialArticleRepository->getSortSpecialArticleTop();
$importantNews = $this->informationRepository->getImportantNews();
$informations = $this->informationRepository->getInformation();
$informationRoute = $this->generateUrl('information');
$specialRoute = $this->generateUrl('special');
//RECOMMEND ITEMS取得
$results = $this->productRepository->createQueryBuilder('p')
->addSelect('pc')
->innerJoin('p.ProductClasses', 'pc')
->innerJoin('p.ProductCategories', 'pct')
->innerJoin('pct.Category', 'c')
->where('p.del_flg = 0')
->andWhere('p.Status = 1')
->getQuery()
->getResult();
// 商品名で判別しているので変更ないか注意
$willard_lotion = null;
$willard_gel = null;
$willard_cream = null;
foreach ($results as $result) {
if ($result['name'] === 'Dr.ウィラード・ウォーター化粧水') {
$willard_lotion = $result;
continue;
} elseif ($result['name'] === 'Dr.ウィラード・ウォーター保湿ジェル') {
$willard_gel = $result;
continue;
} elseif ($result['name'] === 'Dr.ウィラード・ウォーター保湿クリーム') {
$willard_cream = $result;
continue;
}
}
return [
'topSlidePanels' => $topSlidePanels,
'specialArticles' => $specialArticles,
'importantNews' => $importantNews,
'informations' => $informations,
'informationRoute' => $informationRoute,
'specialRoute' =>$specialRoute,
'WillardLotion' => $willard_lotion,
'WillardGel' => $willard_gel,
'WillardCream' => $willard_cream,
'customer' => $Customer,
];
}
}