• Resolved rumo777

    (@rumo777)


    Hello,

    Great plugin. Thank you.

    It would save time if there was a link in Admin bar to connect to current WordPress database as it takes time to go to Admin dashboard->Run Adminer->Open in new Window.

    Especially when session times out. Maybe there could be control of keep alive as well?

    Thank you

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author arisoft

    (@arisoft)

    Hello,

    Thank you for your suggestion. We will keep it in mind when implement new features for a future version.

    Thread Starter rumo777

    (@rumo777)

    Thank you.

    Thats a quick solution

    
    add_action('admin_bar_menu', 'addDBLinkInAdminBar');
    public function addDBLinkInAdminBar($admin_bar)
        {
            $admin_bar->add_menu([
                'id'    => 'database-link',
                'title' => 'Database',
                'href'  => get_admin_url(null, '/admin.php?page=ari-adminer-run-adminer&action=run&noheader=1&id=0')
            ]);
        }
    
    Thread Starter rumo777

    (@rumo777)

    *remove ‘public’ keyword from function definition

    Plugin Author arisoft

    (@arisoft)

    Sorry for the delay. “Show quick icon” parameter is available in plugin settings in v. 1.1.6.

    Thread Starter rumo777

    (@rumo777)

    That was rather quick ??

    Thanks

    Thread Starter rumo777

    (@rumo777)

    Would be great if it appeared on front-end as well, not just admin dashboard

    Plugin Author arisoft

    (@arisoft)

    Update the plugin to v. 1.1.7

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Feature request: Quick connect link in Admin bar’ is closed to new replies.