Your IP : 3.144.48.228


Current Path : /home/church/www/aecedeals.com/wp-content/plugins/wp-plugin-hostgator/inc/
Upload File :
Current File : /home/church/www/aecedeals.com/wp-content/plugins/wp-plugin-hostgator/inc/AdminBar.php

<?php
/**
 * Register AdminBar help button.
 *
 * @package HostGatorWordPressPlugin
 */

namespace HostGator;

/**
 * \HostGator\AdminBar
 */
class AdminBar {

	/**
	 * Initialize WP admin bar customizations.
	 */
	public static function init() {
		add_action( 'wp_before_admin_bar_render', array( __CLASS__, 'on_before_admin_bar_render' ) );
	}

	/**
	 * Customize the WP admin bar.
	 */
	public static function on_before_admin_bar_render() {
		/**
		 * Reference to the global WordPress admin bar instance.
		 *
		 * @var \WP_Admin_Bar
		 */
		global $wp_admin_bar;
		$wp_admin_bar->add_menu(
			array(
				'id'    => 'hostgator-support',
				'title' => __( 'Need help?', 'wp-plugin-hostgator' ),
				'href'  => admin_url( 'admin.php?page=hostgator#/help' ),
				'meta'  => array(
					'title' => esc_attr__( 'We\'re here for you!', 'wp-plugin-hostgator' ),
				),
			)
		);
	}

}