0% found this document useful (0 votes)
25 views1 page

WhatsApp Business API Admin Menu Setup

The document is a PHP script for a WordPress plugin that creates an administrative menu for the WhatsApp Business API. It defines a main menu page and several submenu pages for settings, templates, inbox, and logs, all requiring 'manage_options' permissions. The script ensures that it is not accessed directly by checking the 'ABSPATH' constant.

Uploaded by

Web ComVisu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views1 page

WhatsApp Business API Admin Menu Setup

The document is a PHP script for a WordPress plugin that creates an administrative menu for the WhatsApp Business API. It defines a main menu page and several submenu pages for settings, templates, inbox, and logs, all requiring 'manage_options' permissions. The script ensures that it is not accessed directly by checking the 'ABSPATH' constant.

Uploaded by

Web ComVisu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<?

php
// Exit if accessed directly
if (!defined('ABSPATH')) exit;

// Estrutura do menu administrativo


add_action('admin_menu', 'wab_admin_menu');

function wab_admin_menu() {
add_menu_page(
'WhatsApp Business API',
'WhatsApp Business',
'manage_options',
'wab-dashboard',
'wab_dashboard_page',
'dashicons-whatsapp',
80
);

add_submenu_page(
'wab-dashboard',
'Configurações',
'Configurações',
'manage_options',
'wab-settings',
'wab_settings_page'
);

add_submenu_page(
'wab-dashboard',
'Templates',
'Templates',
'manage_options',
'wab-templates',
'wab_templates_page'
);

add_submenu_page(
'wab-dashboard',
'Inbox',
'Inbox',
'manage_options',
'wab-inbox',
'wab_inbox_page'
);

add_submenu_page(
'wab-dashboard',
'Logs',
'Logs',
'

You might also like