*/ class Latest_Updates extends Notice { /** * Latest Updates Notice * * @return void */ public function __construct() { parent::__construct(); } /** * Notice Content * * @author Jewel Theme */ public function notice_content() { $jltwp_adminify_changelog_message = sprintf( __('%3$s %4$s %5$s %6$s %7$s %8$s
Check Changelogs for %2$s', 'adminify'), esc_url_raw('https://wpadminify.com/updates'), __('More Details', 'adminify'), /** Changelog Items * Starts from: %3$s */ '

' . WP_ADMINIFY . ' v' . esc_html(WP_ADMINIFY_VER) . '' . __(' has some updates..', 'adminify') . '


', // %3$s __(' AI based Dark Mode functionality added, improved huge performance
', 'adminify'), __(' Added Switcher Icon for "Dark/Light/System" option
', 'adminify'), __(' User Roles not working issue fixed on Menu Editor
', 'adminify'), __(' Navigation Tabs applied, all tabs are on now under Account Menu
', 'adminify'), __(' "Logo Options" renamed with "Dark/Light Mode" on WP Adminify settings
', 'adminify') ); printf(wp_kses_post($jltwp_adminify_changelog_message)); } /** * Intervals * * @author Jewel Theme */ public function intervals() { return array(0); } } }