PluginProbe
YayMail – WooCommerce Email Customizer / trunk
YayMail – WooCommerce Email Customizer vtrunk
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / vendor-prefixed / src / Pages / HelpPage.php

HelpPage.php in YayMail – WooCommerce Email Customizer trunk, at vendor-prefixed/src/Pages/HelpPage.php

22 lines 463 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YayMailScoped\YayCommerce\AdminShell\Pages;
4
5 /**
6 * Help page — redirects to external support URL.
7 */
8 class HelpPage
9 {
10 public static function render(): void
11 {
12 // Fallback if redirect didn't fire (shouldn't happen).
13 wp_safe_redirect('https://yaycommerce.com/support/');
14 exit;
15 }
16 public static function load_data(): void
17 {
18 wp_redirect('https://yaycommerce.com/support/');
19 exit;
20 }
21 }
22