- Request / Response
- Performance
- Validator
- Forms
- Exception
- Logs 460
- Events
- Routing
- Cache
- Translation
- Security
- Twig
- Doctrine
- Migrations 12
- Debug
- E-mails
- Configuration
Configuration Settings
Theme
Default theme. It switches between Light and Dark automatically to match the operating system theme.
Provides greatest readability, but requires a well-lit environment.
Reduces eye fatigue. Ideal for low light environments.
Page Width
Fixed page width. Improves readability.
Dynamic page width. As wide as the browser window.
Validator calls
In
OrderItemType.php
line 271 (context):
No violations
[ "value" => 4300 "constraints" => [ Symfony\Component\Validator\Constraints\GreaterThanOrEqual {#8986 +message: "This value should be greater than or equal to {{ compared_value }}." +value: 0 +propertyPath: null +payload: null +groups: [ "Default" ] } ] "groups" => null ]
In
OrderItemType.php
line 287 (context):
No violations
// 送料, 手数料: 金額 -> 正, 個数 -> 正
case OrderItemTypeMaster::DELIVERY_FEE:
case OrderItemTypeMaster::CHARGE:
$errors = $this->validator->validate($OrderItem->getPrice(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['price'], $errors);
$errors = $this->validator->validate($OrderItem->getQuantity(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['quantity'], $errors);
[ "value" => 1297 "constraints" => [ Symfony\Component\Validator\Constraints\GreaterThanOrEqual {#9110 +message: "This value should be greater than or equal to {{ compared_value }}." +value: 0 +propertyPath: null +payload: null +groups: [ "Default" ] } ] "groups" => null ]
In
OrderItemType.php
line 289 (context):
No violations
case OrderItemTypeMaster::CHARGE:
$errors = $this->validator->validate($OrderItem->getPrice(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['price'], $errors);
$errors = $this->validator->validate($OrderItem->getQuantity(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['quantity'], $errors);
break;
[ "value" => 0 "constraints" => [ Symfony\Component\Validator\Constraints\GreaterThanOrEqual {#9104 +message: "This value should be greater than or equal to {{ compared_value }}." +value: 0 +propertyPath: null +payload: null +groups: [ "Default" ] } ] "groups" => null ]
In
OrderItemType.php
line 287 (context):
No violations
// 送料, 手数料: 金額 -> 正, 個数 -> 正
case OrderItemTypeMaster::DELIVERY_FEE:
case OrderItemTypeMaster::CHARGE:
$errors = $this->validator->validate($OrderItem->getPrice(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['price'], $errors);
$errors = $this->validator->validate($OrderItem->getQuantity(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['quantity'], $errors);
[ "value" => 0 "constraints" => [ Symfony\Component\Validator\Constraints\GreaterThanOrEqual {#9144 +message: "This value should be greater than or equal to {{ compared_value }}." +value: 0 +propertyPath: null +payload: null +groups: [ "Default" ] } ] "groups" => null ]
In
OrderItemType.php
line 289 (context):
No violations
case OrderItemTypeMaster::CHARGE:
$errors = $this->validator->validate($OrderItem->getPrice(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['price'], $errors);
$errors = $this->validator->validate($OrderItem->getQuantity(), [new Assert\GreaterThanOrEqual(0)]);
$this->addErrorsIfExists($form['quantity'], $errors);
break;
[ "value" => 1 "constraints" => [ Symfony\Component\Validator\Constraints\GreaterThanOrEqual {#9150 +message: "This value should be greater than or equal to {{ compared_value }}." +value: 0 +propertyPath: null +payload: null +groups: [ "Default" ] } ] "groups" => null ]
In
ValidationListener.php
line 50 (context):
No violations
if ($form->isRoot()) {
// Form groups are validated internally (FormValidator). Here we don't set groups as they are retrieved into the validator.
foreach ($this->validator->validate($form) as $violation) {
// Allow the "invalid" constraint to be put onto
// non-synchronized forms
$allowNonSynchronized = $violation->getConstraint() instanceof Form && Form::NOT_SYNCHRONIZED_ERROR === $violation->getCode();
[ "value" => Symfony\Component\Form\Form {#5920 name: "order" type_class: "Eccube\Form\Type\Admin\OrderType" data: Eccube\Entity\Order {#4567 -id: 5539 -pre_order_id: "99c13bad73698a6e8eb22392ca89d8a47e09d63c" -order_no: "5539" -message: null -name01: "正木" -name02: "弥子" -kana01: "マサキ" -kana02: "ヤコ" -company_name: null -email: "masakiyako0918@gmail.com" -phone_number: "09066788501" -postal_code: "5998272" -addr01: "堺市中区深井中町" -addr02: "3300 ヒルズ深井2番館105" -birth: null -subtotal: 4644.0 -discount: 0 -delivery_fee_total: 0 -charge: 0 -tax: 344.0 -total: 4644.0 -payment_total: 4644.0 -payment_method: "クレジットカード" -note: null -create_date: DateTime @1737691973 {#4560 date: 2025-01-24 13:12:53.0 Asia/Tokyo (+09:00) } -update_date: DateTime @1737765900 {#9696 date: 2025-01-25 00:45:00.115095 UTC (+00:00) } -order_date: DateTime @1737692121 {#4595 date: 2025-01-24 13:15:21.0 Asia/Tokyo (+09:00) } -payment_date: DateTime @1737692123 {#4565 date: 2025-01-24 13:15:23.0 Asia/Tokyo (+09:00) } -currency_code: "JPY" -complete_message: null -complete_mail_message: null -OrderItems: Doctrine\ORM\PersistentCollection {#4731 …} -Shippings: Doctrine\ORM\PersistentCollection {#5000 …} -MailHistories: Doctrine\ORM\PersistentCollection {#4610 …} -Customer: null -Country: null -Pref: Proxies\__CG__\Eccube\Entity\Master\Pref {#2781 …} -Sex: null -Job: null -Payment: Proxies\__CG__\Eccube\Entity\Payment {#5249 …} -DeviceType: Proxies\__CG__\Eccube\Entity\Master\DeviceType {#4995 …} -CustomerOrderStatus: Proxies\__CG__\Eccube\Entity\Master\CustomerOrderStatus {#5222 …} -OrderStatusColor: Proxies\__CG__\Eccube\Entity\Master\OrderStatusColor {#5259 …} -OrderStatus: Eccube\Entity\Master\OrderStatus {#7187 …} -univa_pay_charge_id: "11efda09-d1a8-6a78-8229-cb9c2037c817" -univa_pay_subscription_id: null -univa_pay_charge_amount: null -add_point: "0" -use_point: 0.0 } } "constraints" => null "groups" => null ]