PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / controller / HelpController.php

HelpController.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/controller/HelpController.php

31 lines 579 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Description of HelpController
4 *
5 * @author Ali2Woo Team
6 *
7 * @autoload: a2wl_admin_init
8 */
9
10 namespace AliNext_Lite;;
11
12 use Pages;
13
14 class HelpController {
15
16 public function __construct() {
17 add_action('a2wl_init_admin_menu', [$this, 'add_submenu_page'], 200);
18 }
19
20 public function add_submenu_page($parent_slug): void
21 {
22 add_submenu_page(
23 $parent_slug,
24 '',
25 Pages::getLabel(Pages::HELP),
26 Capability::pluginAccess(),
27 'https://help.ali2woo.com/alinext-kb/'
28 );
29 }
30 }
31