File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/Reports.php.tar
vhosts/uyarreklam.com.tr/httpdocs/wp-content/plugins/google-listings-and-ads/src/Menu/Reports.php 0000644 00000001363 15155032224 0030672 0 ustar 00 var/www <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Menu;
use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\Registerable;
use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\Service;
/**
* Class Reports
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Menu
*/
class Reports implements Service, Registerable {
/**
* Register a service.
*/
public function register(): void {
add_action(
'admin_menu',
function () {
wc_admin_register_page(
[
'title' => __( 'Reports', 'google-listings-and-ads' ),
'parent' => 'google-listings-and-ads-category',
'path' => '/google/reports',
'id' => 'google-reports',
]
);
}
);
}
}