バージョン選択

フォーラム

メニュー

オンライン状況

61 人のユーザが現在オンラインです。 (51 人のユーザが フォーラム を参照しています。)
登録ユーザ: 0
ゲスト: 61
もっと...

サイト内検索

プラグイン > 開発について > form 内の choices をプラグイン側で変更したい

開発について

新規スレッドを追加する

フラット表示 前のトピック | 次のトピック
投稿者 スレッド
h_tanaka
投稿日時: 2017/6/12 17:02
対応状況: 解決済
登録日: 2016/7/22
居住地: 愛媛県
投稿: 1638
form 内の choices をプラグイン側で変更したい
EC-CUBE 3.0.14

formで定義されている choice タイプの選択肢 choices をプラグイン側で変更するにはどうすればよいでしょうか?

具体的には、フロント画面の注文内容確認ページにて表示される配送方法を条件によって変更したいと思っています。

src/Eccube/Form/Type/ShippingItemType.php(抜粋)
class ShippingItemType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->addEventListener(FormEvents::PRE_SET_DATA, function ($event) use ($app) {
                $form
                    ->add('delivery', 'entity', array(
                        'class' => 'Eccube\Entity\Delivery',
                        'property' => 'name',
                        'choices' => $deliveries,        // ★変更したい選択肢
                        'data' => $delivery,
                        'constraints' => array(
                            new Assert\NotBlank(),
                        ),
                    ));
            })
    }


src/Eccube/Controller/ShoppingController.php
134行目の
EccubeEvents::FRONT_SHOPPING_INDEX_INITIALIZE
にてプラグインを呼び出します。

app/Plugin/Test/event.yml
# 注文内容確認
front.shopping.index.initialize:
    - [onFrontShoppingIndexInitialize, NORMAL]


app/Plugin/Test/Event.php
    /**
     * フロント画面:注文内容確認ページで配送方法を変更
     *
     * @param EventArgs $event
     */
    public function onFrontShoppingIndexInitialize(EventArgs $event)
    {
        $app = $this->app;
        if ($app->isGranted('ROLE_ADMIN')) {
            return;
        }

        $builder = $event->getArgument('builder');
        if (empty($builder)) {
            return;
        }
        $Order = $event->getArgument('Order');
        if (empty($Order)) {
            return;
        }

        $form = $builder->getForm();
        $Shippings = $form->get('shippings')->getData();
        if (!empty($Shippings)) {
            foreach ($Shippings as $key => $Shipping) {
                $Delivery = $Shipping->getDelivery();
                if ($Delivery) {
                  // ★choicesを変えたい
                }
            }
        }


----------------
EC-CUBE 《プラチナ》ランクパートナー
トエビス株式会社 田中 宏典
EC-CUBEの機能やデザインのカスタマイズ承ります。

フラット表示 前のトピック | 次のトピック


題名 投稿者 日時
 » form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/12 17:02
     Re: form 内の choices をプラグイン側で変更したい hata 2017/6/12 19:16
       Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 10:14
         Re: form 内の choices をプラグイン側で変更したい hata 2017/6/13 10:23
           Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 10:31
             Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 10:38
             Re: form 内の choices をプラグイン側で変更したい hata 2017/6/13 10:56
               Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 11:12
                 Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 11:27
                   Re: form 内の choices をプラグイン側で変更したい hata 2017/6/13 11:58
                     Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 12:35
                       Re: form 内の choices をプラグイン側で変更したい hata 2017/6/13 12:55
                         Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 14:27
                           Re: form 内の choices をプラグイン側で変更したい hata 2017/6/13 14:43
                             Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 14:53
                               Re: form 内の choices をプラグイン側で変更したい hata 2017/6/13 15:17
                                 Re: form 内の choices をプラグイン側で変更したい h_tanaka 2017/6/13 15:28

 



ログイン


EC-CUBE公式 Amazon Payプラグイン

統計情報

総メンバー数は88,724名です
総投稿数は109,953件です

投稿数ランキング

1
seasoft
7367
2
468
3217
3
AMUAMU
2712
4
nanasess
2313
5
umebius
2085
6
yuh
1819
7
h_tanaka
1638
8
red
1570
9
mcontact
1286
10
tsuji
958
11
fukap
907
12
shutta
835
13
tao_s
799
14 ramrun 789
15 karin 689
16 sumida 641
17
homan
633
18 DELIGHT 572
19
patapata
502
20
flealog
485


ネットショップの壺

EC-CUBEインテグレートパートナー

Copyright© EC-CUBE CO.,LTD. All Rights Reserved.