Settings::maybe_add_app_shop()
Maybe add troubleshooting page for The Events Calendar
Source
File: src/Tribe/Admin/Settings.php
public function maybe_add_app_shop() {
$admin_pages = tribe( 'admin.pages' );
if ( ! tribe( 'settings' )->should_setup_pages() ) {
return;
}
$app_shop = tribe( Tribe__App_Shop::class );
$admin_pages->register_page(
[
'id' => $app_shop::MENU_SLUG,
'parent' => $this->get_tec_events_menu_slug(),
'title' => esc_html__( 'Event Add-Ons', 'event-tickets' ),
'path' => $app_shop::MENU_SLUG,
'capability' => 'install_plugins',
'callback' => [
$app_shop,
'do_menu_page',
],
]
);
}
Changelog
| Version | Description |
|---|---|
| 5.15.0 | Introduced. |