EC-CUBE4.0の新着商品を自動で取得する

こんにちは、フロントエンドエンジニアのてりーです。
僕の詳しいプロフィールはこちら

久々にEC-CUBEについてです。
半年前に制作したECの改修の案件が入ったので、備忘録がてらまとめていきます。

EC-CUBEでなぜ新着商品の自動取得が必要なのか

最初にインストールした直後のEC-CUBEだと新着商品のブロックは手動での記述を行う仕様になっています。

アイスクリームが3つぐらい書いてあるここですね!!

なので、この場所は新商品が更新されるたびに、コードを書き換える必要が出てきます!!
ですので、ECサイト制作者の方は自動で新着商品が変わる様にしてあげると、クライアントさんに喜ばれやすいかなーと思います。

EC-CUBEで新着商品を自動で取得する具体的な手順

手順は以下の通りです。

  1. /app/Customize/Twig/Extension/TwigExtension.phpを作成する
  2. TwigExtension.phpに新着商品を表示するためのコードを記述
  3. コンテンツ管理のブロック管理から新着商品のコードを書き換える
  4. css管理からcssでスタイリング

1つずつ詳しく見ていきましょう!!

1 TwigExtension.phpを作成

/app/Customize/Twig/Extension/TwigExtension.phpを作成します。

ファイルのパスを間違えない様に作りましょう!!

2.TwigExtension.phpにコード記述

さてTwigExtension.phpを作成していきます。
コード内容はphpになるので、理解が難しい人は完全コピペでも動かせます。

<?php namespace Customize\Twig\Extension;   use Doctrine\Common\Collections; use Doctrine\ORM\EntityManagerInterface; use Eccube\Common\EccubeConfig; use Eccube\Entity\Master\ProductStatus; use Eccube\Entity\Product; use Eccube\Entity\ProductClass; use Eccube\Repository\ProductRepository;   class TwigExtension extends \Twig_Extension {     private $entityManager;     protected $eccubeConfig;     private $productRepository;       /**         TwigExtension constructor.     **/     public function __construct(         EntityManagerInterface $entityManager,         EccubeConfig $eccubeConfig,          ProductRepository $productRepository     ) {         $this->entityManager = $entityManager;         $this->eccubeConfig = $eccubeConfig;         $this->productRepository = $productRepository;     }     /**         Returns a list of functions to add to the existing list.         @return array An array of functions     **/     public function getFunctions()     {         return array(             new \Twig_SimpleFunction('CustomizeNewProduct', array($this, 'getCustomizeNewProduct')),         );     }       /**         Name of this extension         @return string     **/     public function getName()     {         return 'CustomizeTwigExtension';     }       /**         新着商品を10件返す         @return Products|null     **/     public function getCustomizeNewProduct()     {         try {             $searchData = array();             $qb = $this->entityManager->createQueryBuilder();             $query = $qb->select("plob")                 ->from("Eccube\\Entity\\Master\\ProductListOrderBy", "plob")                 ->where('plob.id = :id')                 ->setParameter('id', $this->eccubeConfig['eccube_product_order_newer'])                 ->getQuery();             $searchData['orderby'] = $query->getOneOrNullResult();               // 新着順の商品情報10件取得             $qb = $this->productRepository->getQueryBuilderBySearchData($searchData);             $query = $qb->setMaxResults(10)->getQuery();             $products = $query->getResult();             return $products;           } catch (\Exception $e) {             return null;         }         return null;     } } ?>

3.コンテンツ管理のブロック管理から新着商品のコードを書き換える

実際にコードをいじる前に、一回キャッシュ管理の中のキャッシュ削除を行っておきましょう。
2.でTwigファイルを作成したので、その変更を反映させます

次に管理画面からブロック内のコードをいじっていきます。

中身はこんな感じですね!!

{% set Products = CustomizeNewProduct() %} {% if Products|length > 0 %} <div class="ec-role">     <div class="ec-newItemRole">          	<div class="ec-secHeading">             <span class="ec-secHeading__en">NEW Goods</span>             <span class="ec-secHeading__line"></span>             <span class="ec-secHeading__ja">新入荷商品</span>         </div>              <div class="ec-newItemRole__list">               {% for Product in Products %}             <div class="ec-newItemRole__listItem">                 <a href="{{ url('product_detail', {'id': Product.id}) }}">                     <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}">                     <p class="ec-newItemRole__listItemTitle">{{ Product.name }}</p>                     <p class="ec-newItemRole__listItemPrice">                     {% if Product.hasProductClass %}                         {% if Product.getPrice02Min == Product.getPrice02Max %}                             {{ Product.getPrice02IncTaxMin|price }}                         {% else %}                             {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}                         {% endif %}                     {% else %}                         {{ Product.getPrice02IncTaxMin|price }}                     {% endif %}                     </p>                 </a>             </div>             {% endfor %}           </div><!-- .ec-newItemRole__listItem end -->                  <div clas="ec-newItemRole__listItemHeading ec-secHeading--tandem">         	<a class="ec-inlineBtn--top" href="{{ url('product_list') }}?orderby={{eccube_config.eccube_product_order_newer}}">» 全商品一覧はこちら</a>         </div>              </div><!-- .ec-newItemRole end --> </div><!-- .ec-role end --> {% endif %}

4.css管理からcssでスタイリング

cssは制作したいデザインに合わせてよしなにやってください!

こんな感じで5個で1列にするパターンのcssはこんな感じです!!

* カスタマイズ用CSS */ /* トップページ新着商品リスト */ .ec-newItemRole .ec-newItemRole__list{     flex-wrap:wrap; } .ec-newItemRole .ec-newItemRole__list .ec-newItemRole__listItem{     width:20%;     margin:0 auto 20px auto;     padding:0 16px; } .ec-newItemRole .ec-newItemRole__list .ec-newItemRole__listItem a{     max-width:96%;     display:block; } .ec-newItemRole .ec-newItemRole__listItemPrice{     color:#cc0000;     font-weight:bold;     text-align: right;     font-size:18px; } .ec-newItemRole__listItemHeading{     text-align:center; } .ec-inlineBtn--top{       text-align:center; }   @media screen and (max-width:768px){          .ec-newItemRole .ec-newItemRole__list .ec-newItemRole__listItem{         width:33.3%;     }      }

これで新着商品を自動で取得できる様になったと思います!!

EC-CUBE4.0はまだまだ情報が少ないので、色々作りながらアウトプットしていけたらと思います。

まとめ

最後まで読んでいただきありがとうございます。
Twitterもやっているので、興味あればご覧になってください!

 

未経験から開発経験を積みたい人へ:未経験はチーム開発を経験した方が良い理由とお金をかけずにチーム開発経験を積む方法

未経験者からメガベンチャーにエンジニア就職した話:【実体験】未経験からWeb系メガベンチャーのフロントエンドエンジニア転職した方法を振り返る

経験者の場合の副業先:フルリモート週2~3日からでも副業が出来るエージェント紹介

好条件の正社員転職:【転職ドラフト指名の画像アリ】2年目で600万の指名を獲得した僕が考える技術自信ナシでも転職ドラフトを使った方が良い理由