application/helpers/my_functions_helper.phpapplication/helpers/my_functions_helper.php
hooks()->add_action('clients_init', 'my_module_clients_area_menu_items');
function my_module_clients_area_menu_items() {
// Add a menu item for all clients
add_theme_menu_item('custom-menu-item-id', [
'name' => 'Encrypted Contact Us', // The display name of the menu item
'href' => site_url('/secureform'), // URL for the menu item
'position' => 10, // Position in the navigation bar (adjust as needed)
]);
}