Hi @carson-mcdonald, thanks for this plugin!
Line 70 on gad-admin-options.php
uses user levels not capabilities, which triggers a deprecated notice. It could be changed to the following to avoid this:
add_options_page(__('Google Analytics Dashboard Options'), __('Google Analytics Dashboard'), 'manage_options', __FILE__, array(&$this, 'admin_plugin_options'));
(Note manage_options
rather than 8
.)
https://wordpress.org/extend/plugins/google-analytics-dashboard/