protected function _set_list_table_views_default()
 {
     parent::_set_list_table_views_default();
     $export_label = __('Export Events', 'event_espresso');
     if (EE_Registry::instance()->CAP->current_user_can('export', 'espresso_events_export')) {
         //			$this->_views['all']['bulk_action']['export_events'] = $export_label;
         //			$this->_views['draft']['bulk_action']['export_events'] = $export_label;
         if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) {
             //				$this->_views['trash']['bulk_action']['export_events'] = $export_label;
         }
     }
     $new_views = array('today' => array('slug' => 'today', 'label' => __('Today', 'event_espresso'), 'count' => $this->total_events_today(), 'bulk_action' => array('trash_events' => __('Move to Trash', 'event_espresso'))), 'month' => array('slug' => 'month', 'label' => __('This Month', 'event_espresso'), 'count' => $this->total_events_this_month(), 'bulk_action' => array('trash_events' => __('Move to Trash', 'event_espresso'))));
     $this->_views = array_merge($this->_views, $new_views);
 }