Submit
Path:
~
/
home
/
getwphos
/
www
/
almajd14
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
StockNotifications
/
Frontend
/
File Content:
NotificationManagementService.php
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\StockNotifications\Frontend; use Automattic\WooCommerce\Internal\StockNotifications\Notification; /** * Notification management service. */ class NotificationManagementService { /** * Get resend verification email URL. * * @param Notification $notification The notification. * @return string The resend verification email URL. */ public function get_resend_verification_email_url( Notification $notification ): string { $url = add_query_arg( array( 'wc_bis_resend_notification' => $notification->get_id(), ), $notification->get_product_permalink() ); return wp_nonce_url( $url, 'wc_bis_resend_verification_email_nonce' ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
FormHandlerService.php
3163 bytes
0644
NotificationManagementService.php
749 bytes
0644
ProductPageIntegration.php
7147 bytes
0644
SignupResult.php
1030 bytes
0644
SignupService.php
18271 bytes
0644
N4ST4R_ID | Naxtarrr