# payplug/2.10.0/src/Interfaces/PayplugGatewayBuilder.php

PayPlug for WooCommerce (Official), version 2.10.0. 20 lines.

- Page: https://pluginprobe.com/plugins/payplug/2.10.0/code/src/Interfaces/PayplugGatewayBuilder.php
- Raw: https://pluginprobe.com/plugins/payplug/2.10.0/raw/src/Interfaces/PayplugGatewayBuilder.php
- Modified: 2024-10-24T16:13:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/payplug/2.10.0/code/src/Interfaces/PayplugGatewayBuilder.php#L10-L20`.

```php
<?php

namespace Payplug\PayplugWoocommerce\Interfaces;

interface PayplugGatewayBuilder
{

	public function get_icon();

	public function display_notice();

	public function checkGateway();

	public function process_standard_payment($order, $amount, $customer_id);

	//TODO:: remove this when decouple CC from PayplugGateway only needed for old BO
	public function process_admin_options();

}

```
