Skip to content

Instantly share code, notes, and snippets.

View kurozumi's full-sized avatar

kurozumi kurozumi

View GitHub Profile
@kurozumi
kurozumi / services.yaml
Created January 2, 2021 05:29
ParamConverterを無効化
sensio_framework_extra:
request:
converters: true
auto_convert: false
@kurozumi
kurozumi / plg_nonmember_form.twig
Last active April 2, 2024 11:32
お届け先情報入力フォームブロックプラグインのパスワード項目設置サンプル
{% if app.request.get('_route') == 'user_data' %}
{% if product is defined and product is not null %}
{% form_theme form 'Form/form_div_layout.twig' %}
<div class="ec-customerRole">
<div class="ec-pageHeader">
<h1>{{ 'front.shopping.nonmember'|trans }}</h1>
</div>
<div class="ec-cartRole">
<div class="ec-cartRole__progress">
@kurozumi
kurozumi / RoutingExtension.php
Created December 11, 2020 00:19
RoutingExtension
<?php
/**
* This file is part of Customize
*
* 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.
@kurozumi
kurozumi / ProductConverter.php
Last active December 11, 2020 02:52
ProductConverter
<?php
/**
* This file is part of Customize
*
* 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.
@kurozumi
kurozumi / ProductController.php
Created December 11, 2020 00:01
ProductController
<?php
/**
* This file is part of Customize
*
* 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.
@kurozumi
kurozumi / ProductTrait.php
Created December 10, 2020 23:53
ProductTrait
<?php
/**
* This file is part of Customize
*
* 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.
@kurozumi
kurozumi / CustomerTypeController.php
Last active December 8, 2020 01:58
CustomerTypeController
<?php
/**
* This file is part of CustomerType
*
* 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.
@kurozumi
kurozumi / bundles.php
Created December 6, 2020 05:21
bundles
<?php
/**
* This file is part of CustomerType
*
* 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.
@kurozumi
kurozumi / CustomerTypeBundle.php
Created December 6, 2020 05:20
CustomerTypeBundle
<?php
/**
* This file is part of CustomerType
*
* 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.
@kurozumi
kurozumi / CustomerTypeCompilerPass.php
Last active December 8, 2020 01:44
自動タグ付けされたクラスをCustomerTypeContextに注入するコンパイラ
<?php
/**
* This file is part of CustomerType
*
* 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.