Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\Admin;

use Hostinger\Admin\PluginSettings;
use Hostinger\WpHelper\Utils;
use Hostinger\WpMenuManager\Menus;

defined( 'ABSPATH' ) || exit;

class Menu {
    public const MENU_SLUG = 'hostinger-tools';

    public function __construct() {
        add_filter( 'hostinger_admin_menu_bar_items', array( $this, 'add_admin_bar_items' ) );
        add_filter( 'hostinger_menu_subpages', array( $this, 'sub_menu' ) );
    }

    public function add_admin_bar_items( $menu_items ): array {
        $menu_items[] = array(
            'id'    => 'hostinger-tools-admin-bar',
            'title' => __( 'Tools', 'hostinger' ),
            'href'  => admin_url( 'admin.php?page=' . self::MENU_SLUG ),
        );

        return $menu_items;
    }

    public function sub_menu( $submenus ): array {
        $tools_submenu =