Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

Payment Method Enabled Criterion

The Enabled Search Criterion searches for payment methods based on whether the payment method is enabled or not.

Arguments

  • value - whether the payment method is enabled

Example

PHP

1
2
3
4
5
use Ibexa\Contracts\Payment\PaymentMethod\PaymentMethodQuery;

$query = new PaymentMethodQuery(
    new \Ibexa\Contracts\Payment\PaymentMethod\Query\Criterion\Enabled(true)
);