mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
127 lines
3.9 KiB
PHP
127 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* The Pay Later block module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\PayLaterBlock
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\PayLaterBlock;
|
|
|
|
use WooCommerce\PayPalCommerce\Button\Endpoint\CartScriptParamsEndpoint;
|
|
use WooCommerce\PayPalCommerce\Button\Helper\MessagesApply;
|
|
use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ExecutableModule;
|
|
use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ExtendingModule;
|
|
use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ModuleClassNameIdTrait;
|
|
use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ServiceModule;
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
|
|
use WooCommerce\PayPalCommerce\WcGateway\Helper\SettingsStatus;
|
|
use WooCommerce\PayPalCommerce\WcGateway\Settings\Settings;
|
|
|
|
/**
|
|
* Class PayLaterBlockModule
|
|
*/
|
|
class PayLaterBlockModule implements ServiceModule, ExtendingModule, ExecutableModule {
|
|
use ModuleClassNameIdTrait;
|
|
|
|
/**
|
|
* Returns whether the block module should be loaded.
|
|
*/
|
|
public static function is_module_loading_required(): bool {
|
|
return apply_filters(
|
|
// phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
|
'woocommerce.feature-flags.woocommerce_paypal_payments.paylater_block_enabled',
|
|
getenv( 'PCP_PAYLATER_BLOCK' ) !== '0'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns whether the block is enabled.
|
|
*
|
|
* @param SettingsStatus $settings_status The Settings status helper.
|
|
* @return bool true if the block is enabled, otherwise false.
|
|
*/
|
|
public static function is_block_enabled( SettingsStatus $settings_status ): bool {
|
|
return self::is_module_loading_required() && $settings_status->is_pay_later_messaging_enabled_for_location( 'custom_placement' );
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function services(): array {
|
|
return require __DIR__ . '/../services.php';
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function extensions(): array {
|
|
return require __DIR__ . '/../extensions.php';
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function run( ContainerInterface $c ): bool {
|
|
$messages_apply = $c->get( 'button.helper.messages-apply' );
|
|
assert( $messages_apply instanceof MessagesApply );
|
|
|
|
if ( ! $messages_apply->for_country() ) {
|
|
return true;
|
|
}
|
|
|
|
add_action(
|
|
'init',
|
|
function () use ( $c ): void {
|
|
$settings = $c->get( 'wcgateway.settings' );
|
|
assert( $settings instanceof Settings );
|
|
|
|
$script_handle = 'ppcp-paylater-block';
|
|
wp_register_script(
|
|
$script_handle,
|
|
$c->get( 'paylater-block.url' ) . '/assets/js/paylater-block.js',
|
|
array(),
|
|
$c->get( 'ppcp.asset-version' ),
|
|
true
|
|
);
|
|
wp_localize_script(
|
|
$script_handle,
|
|
'PcpPayLaterBlock',
|
|
array(
|
|
'ajax' => array(
|
|
'cart_script_params' => array(
|
|
'endpoint' => \WC_AJAX::get_endpoint( CartScriptParamsEndpoint::ENDPOINT ),
|
|
),
|
|
),
|
|
'settingsUrl' => admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=ppcp-gateway' ),
|
|
'vaultingEnabled' => $settings->has( 'vault_enabled' ) && $settings->get( 'vault_enabled' ),
|
|
'placementEnabled' => self::is_block_enabled( $c->get( 'wcgateway.settings.status' ) ),
|
|
'payLaterSettingsUrl' => admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=ppcp-gateway&ppcp-tab=ppcp-pay-later' ),
|
|
)
|
|
);
|
|
|
|
register_block_type(
|
|
$c->get( 'ppcp.path-to-plugin-folder' ) . 'modules/ppcp-paylater-block/',
|
|
array(
|
|
'render_callback' => function ( array $attributes ) use ( $c ) {
|
|
$renderer = $c->get( 'paylater-block.renderer' );
|
|
ob_start();
|
|
// phpcs:ignore -- No need to escape it, the PayLaterBlockRenderer class is responsible for escaping.
|
|
echo $renderer->render(
|
|
// phpcs:ignore
|
|
$attributes,
|
|
// phpcs:ignore
|
|
$c
|
|
);
|
|
return ob_get_clean();
|
|
},
|
|
)
|
|
);
|
|
},
|
|
20
|
|
);
|
|
|
|
return true;
|
|
}
|
|
}
|