/**
  * Apply list actions, and load our list-table object
  *
  * @action load-edit.php
  *
  * @return void
  */
 public function load_list_table()
 {
     global $typenow;
     if (self::POSTTYPE !== $typenow || WP_Stream_API::is_restricted(true)) {
         return;
     }
     require_once WP_STREAM_NOTIFICATIONS_INC_DIR . 'class-wp-stream-notifications-list-table.php';
     WP_Stream_Notifications_List_Table::get_instance();
 }