# awesome-support/trunk/includes/admin/functions-menu.php

Awesome Support – WordPress HelpDesk &amp; Support Plugin, version trunk. 186 lines.

- Page: https://pluginprobe.com/plugins/awesome-support/trunk/code/includes/admin/functions-menu.php
- Raw: https://pluginprobe.com/plugins/awesome-support/trunk/raw/includes/admin/functions-menu.php
- Modified: 2025-11-11T06:22:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/awesome-support/trunk/code/includes/admin/functions-menu.php#L10-L20`.

```php
<?php
/**
 * @package   Awesome Support/Admin/Functions/Menu
 * @author    AwesomeSupport <contact@getawesomesupport.com>
 * @license   GPL-2.0+
 * @link      https://getawesomesupport.com
 * @copyright 2015-2017 AwesomeSupport
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

add_action( 'admin_menu', 'wpas_register_submenu_items' );
/**
 * Register all submenu items.
 *
 * @since  3.0.0
 * @return void
 */
function wpas_register_submenu_items() {

	add_submenu_page( 'edit.php?post_type=ticket', __( 'Debugging Tools', 'awesome-support' ), __( 'Tools', 'awesome-support' ), 'administrator', 'wpas-status', 'wpas_display_status_page' );
	
	add_submenu_page( 'edit.php?post_type=ticket', __( 'Awesome Support Addons', 'awesome-support' ), '<span style="color:#f39c12;">' . __( 'Addons', 'awesome-support' ) . '</span>', 'edit_posts', 'wpas-addons', 'wpas_display_addons_page' );
	
	if ( ! defined( 'WPAS_SAAS' ) || ( defined( 'WPAS_SAAS' ) && false === WPAS_SAAS ) ) {
		
		add_submenu_page( 'edit.php?post_type=ticket', __( 'Get a Free Addon', 'awesome-support' ), '<span style="color:#f39c12;">' . esc_html__( 'Get a Free Addon!', 'awesome-support' ) . '</span>', 'administrator', 'wpas-optin', 'wpas_display_optin_page' );
		
		add_submenu_page( 'edit.php?post_type=ticket', __( 'Help & Support', 'awesome-support' ), '<span style="color:#4CBBA7;">' . esc_html__( 'Help & Support', 'awesome-support' ) . '</span>', 'administrator', 'wpas-help-and-support', 'wpas_display_help_and_support_page' );		
		
		// Premium-only Get Help button (visible when at least one addon is active)
		if ( ! empty( WPAS()->addons ) ) {
			add_submenu_page( 'edit.php?post_type=ticket', __( 'Get Help', 'awesome-support' ), '<span style="display:inline-block; background:#4CBBA7; font-weight:600; border-radius:3px; padding:2px 8px; color:#fff;">' . esc_html__( 'Get Help', 'awesome-support' ) . '</span>', 'edit_posts', 'wpas-get-help', 'wpas_display_get_help_page' );
		}

		/**
		 * Provides a hook for Addons to add their menu item in the right location, i.e. above the "About" page.
		 *
		 * @since 4.3.3
		 *
		 * @param string Passes the Awesome Support parent slug to the addon.
		 */
		do_action( 'wpas_addon_submenu_page',  'edit.php?post_type=ticket' );

		add_submenu_page( 'edit.php?post_type=ticket', __( 'About Awesome Support', 'awesome-support' ), __( 'About', 'awesome-support' ), 'edit_posts', 'wpas-about', 'wpas_display_about_page' );	

	}				

	// Hide the free addon page if the user already claimed it
	if ( true === wpas_is_free_addon_page_dismissed() ) {
		remove_submenu_page( 'edit.php?post_type=ticket', 'wpas-optin' );
	}
}

add_action( 'admin_menu', 'wpas_tickets_count' );
/**
 * Add ticket count in admin menu item.
 *
 * @return boolean True if the ticket count was added, false otherwise
 * @since  1.0.0
 */
function wpas_tickets_count() {

	if ( false === (bool) wpas_get_option( 'show_count' ) ) {
		return false;
	}

	global $menu, $current_user;

	$count_cache = get_site_transient( 'wpas_tickets_counts' );
	
	if( !is_array($count_cache) )
	{
		$count_cache = array();
	}
	if ( wpas_is_asadmin() && false === boolval( wpas_get_option( 'admin_see_all' ) )
		 || ! wpas_is_asadmin() && wpas_is_agent() && false === boolval( wpas_get_option( 'agent_see_all' ) )
	) {		
		// Display tickets was assign to current user
		if( is_array( $count_cache ) && isset( $count_cache[ $current_user->ID ] ) )
		{
			$count = $count_cache[ $current_user->ID ];			
		}
		else
		{
			$agent = new WPAS_Member_Agent( $current_user->ID );
			$count = $agent->open_tickets();
			$count_cache[$current_user->ID] = $count;
			set_site_transient( 'wpas_tickets_counts', $count_cache, DAY_IN_SECONDS  );			
		}		

	} else {	
		
		// Display all Opened tickets
		if( is_array( $count_cache ) && isset( $count_cache['all'] ) )
		{
			$count = $count_cache['all'];			
		}
		else
		{
			$count = wpas_get_tickets( 'open', [], 'any', true, true );
			$count_cache['all'] = $count;
			set_site_transient( 'wpas_tickets_counts', $count_cache, DAY_IN_SECONDS  );			
		}		
	}
	
	if ( 0 === $count ) {
		return false;
	}

	foreach ( $menu as $key => $value ) {
		if ( $menu[ $key ][2] == 'edit.php?post_type=ticket' ) {
			$menu[ $key ][0] .= ' <span class="awaiting-mod count-' . $count . '"><span class="pending-count">' . $count . '</span></span>';
		}
	}

	return true;
}

/**
 * Render the about page for this plugin.
 *
 * @since    3.0.0
 */
function wpas_display_about_page() {
	include_once( WPAS_PATH . 'includes/admin/views/about.php' );
}

/**
 * Render the addons page for this plugin.
 *
 * @since    3.0.0
 */
function wpas_display_addons_page() {
	include_once( WPAS_PATH . 'includes/admin/views/addons.php' );
}

/**
 * Render the free addon page
 *
 * @since    3.3.3
 */
function wpas_display_optin_page() {
	include_once( WPAS_PATH . 'includes/admin/views/opt-in.php' );
}

/**
 * Render the help & support options page
 *
 * @since    5.2.0
 */
function wpas_display_help_and_support_page() {
	include_once( WPAS_PATH . 'includes/admin/views/wpas-help-and-support.php' );
}

/**
 * Render the system status.
 *
 * @since    3.0.0
 */
function wpas_display_status_page() {
	include_once( WPAS_PATH . 'includes/admin/views/status.php' );
}

/**
 * Redirect to the Get Help page.
 *
 * @since    3.0.0
 */
function wpas_display_get_help_page() {
	$link = 'https://getawesomesupport.com/submit-ticket/';
    if ( ! headers_sent() ) {
        wp_redirect( $link );
        exit;
    } else {
		include_once( WPAS_PATH . 'includes/admin/views/wpas-help-and-support.php' );
        echo '<script type="text/javascript">';
        echo 'window.location.href="'.$link.'";';
        echo '</script>';
        echo '<noscript><meta http-equiv="refresh" content="0;url='.$link.'" /></noscript>';
        exit;
    }
}
```
