*/ namespace RankMath_Monitor\Admin; use RankMath_Monitor\Helper as GlobalHelper; defined( 'ABSPATH' ) || exit; /** * Admin_Helper class. */ class Admin_Helper { /** * Get tooltip html. * * @param string $message Message to show in tooltip. * @return string */ public static function get_tooltip( $message ) { return '' . $message . ''; } /** * Get admin view file. * * @param string $view View filename. * @return string Complete path to view */ public static function get_view( $view ) { return rank_math_monitor()->admin_dir() . "views/{$view}.php"; } }