Hello Everyone!
Just wanted to ask if anyone knows how to resolve my admin custom configuration. I created custom modules, and I added a link for configuration in the admin panel.
Admin Page
Admin Options Defs
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$admin_option_defs = array();
$admin_option_defs['Administration']['dvtac_SMS_Settings'] = array(
"dvtac_SMSSettings",
"Configure",
"Set SMS Plugins configurations.",
"./index.php?module=dvtac_SMS&action=dvtac_SMSSettings",
);
$admin_option_defs['Administration']['dvtac_SMSPlugins_Activation'] = array(
"SMSPlugins_Activation",
"License Management",
"Check your SMS Plugins License",
"./index.php?module=dvtac_SMS&action=dvtac_SMSSettings_license",
);
$admin_group_header[] = array(
'SMS Plugins',
'',
false,
$admin_option_defs,
It works perfectly fine if I click the link if I`m at https://example.com/#Administration, but if I am at the https://example.com/#bwc/index.php?module=Administration&action=index this is the error I got. And the link I set on the admin options defs will also change instead of having this link: /index.php?module=dvtac_SMS&action=dvtac_SMSSettings_license will be having this one: #dvtac_SMS/dvtac_SMSSettings_license.