public static function admin_menu()
 {
     self::$menu_id = add_management_page(esc_html__('WordPress Starter Processor', 'wordpress-starter'), esc_html__('WordPress Starter Processor', 'wordpress-starter'), 'manage_options', self::ID, array(__CLASS__, 'user_interface'));
     add_action('admin_print_scripts-' . self::$menu_id, array(__CLASS__, 'scripts'));
     add_action('admin_print_styles-' . self::$menu_id, array(__CLASS__, 'styles'));
     add_screen_meta_link('wps_settings_link', esc_html__('WordPress Starter Settings', 'wordpress-starter'), admin_url('options-general.php?page=' . WordPress_Starter_Settings::ID), self::$menu_id, array('style' => 'font-weight: bold;'));
 }