????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/./tempvsty/dchsreunion.com/wp-content/plugins/wp-plugin-hostgator/inc/ |
Upload File : |
<?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' ), ), ) ); } }