PluginProbe ʕ •ᴥ•ʔ
WP Chat App / trunk
WP Chat App vtrunk
3.8.1 3.8.2 trunk 2.6 3.4 3.4.1 3.4.2 3.4.4 3.4.5 3.4.6 3.5 3.6 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.8.0
wp-whatsapp / vendor-prefixed / src / Pages / HelpPage.php
wp-whatsapp / vendor-prefixed / src / Pages Last commit date
HelpPage.php 4 months ago LicensesPage.php 4 months ago RecommendedPluginsPage.php 3 months ago
HelpPage.php
23 lines
1 <?php
2
3 namespace WhatsappScoped\YayCommerce\AdminShell\Pages;
4
5 /**
6 * Help page — redirects to external support URL.
7 * @internal
8 */
9 class HelpPage
10 {
11 public static function render() : void
12 {
13 // Fallback if redirect didn't fire (shouldn't happen).
14 wp_safe_redirect('https://yaycommerce.com/support/');
15 exit;
16 }
17 public static function load_data() : void
18 {
19 wp_redirect('https://yaycommerce.com/support/');
20 exit;
21 }
22 }
23