REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.99 KB
Close
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/PostEditorBlocks/MarketingOptinBlock.php
Text
Base64
<?php declare(strict_types = 1); namespace MailPoet\PostEditorBlocks; if (!defined('ABSPATH')) exit; use Automattic\WooCommerce\Blocks\Integrations\IntegrationInterface; use MailPoet\Config\Env; use MailPoet\WP\Functions as WPFunctions; /** * Class MarketingOptinBlock * * Class for integrating marketing optin block with WooCommerce Checkout. */ class MarketingOptinBlock implements IntegrationInterface { /** @var array */ private $options; /** @var WPFunctions */ private $wp; public function __construct( array $options, WPFunctions $wp ) { $this->options = $options; $this->wp = $wp; } public function get_name(): string { // phpcs:ignore PSR1.Methods.CamelCapsMethodName return 'mailpoet'; } /** * Register block scripts and assets. */ public function initialize() { $script_asset_path = Env::$assetsPath . '/dist/js/marketing_optin_block/marketing-optin-block-frontend.asset.php'; $script_asset = file_exists($script_asset_path) ? require $script_asset_path : [ 'dependencies' => [], 'version' => Env::$version, ]; $this->wp->wpRegisterScript( 'mailpoet-marketing-optin-block-frontend', Env::$assetsUrl . '/dist/js/marketing_optin_block/marketing-optin-block-frontend.js', $script_asset['dependencies'], $script_asset['version'], true ); } /** * Returns an array of script handles to enqueue in the frontend context. * * @return string[] */ public function get_script_handles() { // phpcs:ignore return ['mailpoet-marketing-optin-block-frontend']; } /** * Returns an array of script handles to enqueue in the editor context. * * @return string[] */ public function get_editor_script_handles() { // phpcs:ignore return []; } /** * An array of key, value pairs of data made available to the block on the client side. * * @return array */ public function get_script_data() { // phpcs:ignore return $this->options; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
index.php
0 B
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
MarketingOptinBlock.php
1.99 KB
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
PostEditorBlock.php
1.64 KB
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SubscriptionFormBlock.php
2.43 KB
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
WooCommerceBlocksIntegration.php
5.27 KB
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).