🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:13:13 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Menu
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Menu
🔄 Refresh
✏️
Editing: SetupMerchantCenter.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Menu; use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\Registerable; use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\Service; /** * Class SetupMerchantCenter * * @package Automattic\WooCommerce\GoogleListingsAndAds\Menu */ class SetupMerchantCenter implements Service, Registerable { /** * Register a service. */ public function register(): void { add_action( 'admin_menu', function () { wc_admin_register_page( [ 'title' => __( 'MC Setup Wizard', 'google-listings-and-ads' ), 'parent' => '', 'path' => '/google/setup-mc', 'id' => 'google-setup-mc', ] ); } ); } }
💾 Save Changes
❌ Cancel