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 |