🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 11:27:02 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
ramailobhela.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
Blocks
/
Integrations
📍 /home/therahul/ramailobhela.com/wp-content/plugins/woocommerce/src/Blocks/Integrations
🔄 Refresh
✏️
Editing: IntegrationInterface.php
Writable
<?php namespace Automattic\WooCommerce\Blocks\Integrations; /** * Integration.Interface * * Integrations must use this interface when registering themselves with blocks, */ interface IntegrationInterface { /** * The name of the integration. * * @return string */ public function get_name(); /** * When called invokes any initialization/setup for the integration. */ public function initialize(); /** * Returns an array of script handles to enqueue in the frontend context. * * @return string[] */ public function get_script_handles(); /** * Returns an array of script handles to enqueue in the editor context. * * @return string[] */ public function get_editor_script_handles(); /** * An array of key, value pairs of data made available to the block on the client side. * * @return array */ public function get_script_data(); }
💾 Save Changes
❌ Cancel