MC4WP_Admin::register_dashboard_widgets PHP Method

register_dashboard_widgets() public method

Register dashboard widgets
    public function register_dashboard_widgets()
    {
        if (!$this->tools->is_user_authorized()) {
            return false;
        }
        /**
         * Setup dashboard widget, users are authorized by now.
         *
         * Use this hook to register your own dashboard widgets for users with the required capability.
         *
         * @since 3.0
         * @ignore
         */
        do_action('mc4wp_dashboard_setup');
        return true;
    }