Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created July 13, 2021 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/c4c037fcde4911d460270a38d0461079 to your computer and use it in GitHub Desktop.
Save kurozumi/c4c037fcde4911d460270a38d0461079 to your computer and use it in GitHub Desktop.
商品登録ページに自動登録する会員グループを選択する高奥を追加
<?php
/**
* This file is part of CustomerGroupProduct
*
* Copyright(c) Akira Kurozumi <info@a-zumi.net>
*
* https://a-zumi.net
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Plugin\CustomerGroupProduct\Form\Extension\Admin;
use Doctrine\Common\Collections\Criteria;
use Doctrine\ORM\EntityRepository;
use Eccube\Form\Type\Admin\ProductType;
use Plugin\CustomerGroup\Entity\Group;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Symfony\Component\Form\AbstractTypeExtension;
use Symfony\Component\Form\FormBuilderInterface;
class ProductTypeExtension extends AbstractTypeExtension
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('registerGroup', EntityType::class, [
'label' => '自動登録する会員グループ',
'class' => Group::class,
'expanded' => false,
'multiple' => false,
'required' => false,
'placeholder' => 'common.select__unspecified',
'eccube_form_options' => [
'auto_render' => true,
],
'choice_label' => function (Group $group) {
return $group->getName() . '[管理名:' . $group->getBackendName() .']';
},
'query_builder' => function (EntityRepository $er) {
return $er->createQueryBuilder('g')
->orderBy('g.sortNo', Criteria::ASC);
}
]);
}
/**
* @return string
*/
public function getExtendedType(): string
{
return ProductType::class;
}
/**
* @return iterable
*/
public static function getExtendedTypes(): iterable
{
yield ProductType::class;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment