/**
  * Check for remote notifications.
  *
  * Use the Remote Dashboard Notifications plugin
  * to check for possible notifications from
  * http://getawesomesupport.com
  *
  * @since  3.0.0
  * @link   https://wordpress.org/plugins/remote-dashboard-notifications/
  * @return void
  */
 public function remote_notifications()
 {
     if (is_admin() && function_exists('rdnc_add_notification') && (!defined('WPAS_REMOTE_NOTIFICATIONS_OFF') || true !== WPAS_REMOTE_NOTIFICATIONS_OFF)) {
         rdnc_add_notification(89, '01710ef695c7a7fa', 'https://getawesomesupport.com');
     }
 }
 public function __construct($channel_id = false, $channel_key = false, $server = false)
 {
     rdnc_add_notification($channel_id, $channel_key, $server);
 }