diff --git a/cod_community/cod_community.features.inc b/cod_community/cod_community.features.inc
index 5afca9f..00bc803 100644
--- a/cod_community/cod_community.features.inc
+++ b/cod_community/cod_community.features.inc
@@ -1,10 +1,12 @@
 <?php
+/**
+ * @file
+ * cod_community.features.inc
+ */
 
 /**
- * Implementation of hook_views_api().
+ * Implements hook_views_api().
  */
 function cod_community_views_api() {
-  return array(
-    'api' => '2',
-  );
+  return array("version" => "3.0");
 }
diff --git a/cod_community/cod_community.features.menu_links.inc b/cod_community/cod_community.features.menu_links.inc
deleted file mode 100644
index 2984bb9..0000000
--- a/cod_community/cod_community.features.menu_links.inc
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/**
- * Implementation of hook_menu_default_menu_links().
- */
-function cod_community_menu_default_menu_links() {
-  $menu_links = array();
-
-  // Exported menu link: primary-links:community
-  $menu_links['primary-links:community'] = array(
-    'menu_name' => 'primary-links',
-    'link_path' => 'community',
-    'router_path' => 'community',
-    'link_title' => 'Community',
-    'options' => array(
-      'attributes' => array(
-        'title' => 'Connect with attendees',
-      ),
-    ),
-    'module' => 'system',
-    'hidden' => '0',
-    'external' => '0',
-    'has_children' => '1',
-    'expanded' => '1',
-    'weight' => '0',
-  );
-  // Translatables
-  // Included for use with string extractors like potx.
-  t('Community');
-
-
-  return $menu_links;
-}
diff --git a/cod_community/cod_community.features.user_permission.inc b/cod_community/cod_community.features.user_permission.inc
index 5992a84..49b4ffe 100644
--- a/cod_community/cod_community.features.user_permission.inc
+++ b/cod_community/cod_community.features.user_permission.inc
@@ -1,17 +1,22 @@
 <?php
+/**
+ * @file
+ * cod_community.features.user_permission.inc
+ */
 
 /**
- * Implementation of hook_user_default_permissions().
+ * Implements hook_user_default_permissions().
  */
 function cod_community_user_default_permissions() {
   $permissions = array();
 
-  // Exported permission: administer site-wide contact form
-  $permissions['administer site-wide contact form'] = array(
-    'name' => 'administer site-wide contact form',
+  // Exported permission: administer contact forms
+  $permissions['administer contact forms'] = array(
+    'name' => 'administer contact forms',
     'roles' => array(
-      '0' => 'site administrator',
+      0 => 'administrator',
     ),
+    'module' => 'contact',
   );
 
   return $permissions;
diff --git a/cod_community/cod_community.info b/cod_community/cod_community.info
index bbc3bd2..8bb07fd 100644
--- a/cod_community/cod_community.info
+++ b/cod_community/cod_community.info
@@ -1,16 +1,16 @@
-core = "6.x"
+name = "COD Community"
+description = "Facilitates interaction between the website's users."
+core = "7.x"
+package = "COD"
+php = "5.2.4"
+version = "7.x-1.0-dev"
+project = "cod_community"
 dependencies[] = "cod_base"
 dependencies[] = "contact"
 dependencies[] = "features"
 dependencies[] = "menu"
 dependencies[] = "profile"
-dependencies[] = "signup"
 dependencies[] = "views"
-description = "Facilitates interaction between the website's users."
-features[menu_links][] = "primary-links:community"
-features[user_permission][] = "administer site-wide contact form"
-features[views][] = "attendees"
-features[views_api][] = "api:2"
-name = "COD Community"
-package = "COD"
-project = "cod_community"
\ No newline at end of file
+features[ctools][] = "views:views_default:3.0"
+features[user_permission][] = "administer contact forms"
+features[views_view][] = "attendees"
diff --git a/cod_community/cod_community.views_default.inc b/cod_community/cod_community.views_default.inc
index e757de9..3dcc54d 100644
--- a/cod_community/cod_community.views_default.inc
+++ b/cod_community/cod_community.views_default.inc
@@ -1,581 +1,529 @@
 <?php
+/**
+ * @file
+ * cod_community.views_default.inc
+ */
 
 /**
- * Implementation of hook_views_default_views().
+ * Implements hook_views_default_views().
  */
 function cod_community_views_default_views() {
-  $views = array();
+  $export = array();
 
-  // Exported view: attendees
   $view = new view;
   $view->name = 'attendees';
-  $view->description = 'View of users that have signed up and are attendees';
-  $view->tag = '';
-  $view->view_php = '';
+  $view->description = '';
+  $view->tag = 'default';
   $view->base_table = 'users';
-  $view->is_cacheable = FALSE;
-  $view->api_version = 2;
+  $view->human_name = 'Attendees';
+  $view->core = 7;
+  $view->api_version = '3.0';
   $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
-  $handler = $view->new_display('default', 'Defaults', 'default');
-  $handler->override_option('relationships', array(
-    'uid' => array(
-      'label' => 'Signup user',
-      'required' => 1,
-      'id' => 'uid',
-      'table' => 'signup_log',
-      'field' => 'uid',
-      'relationship' => 'none',
-      'override' => array(
-        'button' => 'Override',
-      ),
-    ),
-  ));
-  $handler->override_option('fields', array(
+
+  /* Display: Master */
+  $handler = $view->new_display('default', 'Master', 'default');
+  $handler->display->display_options['title'] = 'Community';
+  $handler->display->display_options['use_more'] = TRUE;
+  $handler->display->display_options['use_more_text'] = 'All Attendees';
+  $handler->display->display_options['access']['type'] = 'perm';
+  $handler->display->display_options['access']['perm'] = 'access user profiles';
+  $handler->display->display_options['cache']['type'] = 'none';
+  $handler->display->display_options['query']['type'] = 'views_query';
+  $handler->display->display_options['query']['options']['query_comment'] = FALSE;
+  $handler->display->display_options['exposed_form']['type'] = 'basic';
+  $handler->display->display_options['exposed_form']['options']['submit_button'] = 'Search';
+  $handler->display->display_options['exposed_form']['options']['autosubmit'] = 0;
+  $handler->display->display_options['exposed_form']['options']['autosubmit_hide'] = 1;
+  $handler->display->display_options['pager']['type'] = 'full';
+  $handler->display->display_options['pager']['options']['items_per_page'] = '48';
+  $handler->display->display_options['pager']['options']['offset'] = '0';
+  $handler->display->display_options['pager']['options']['id'] = '0';
+  $handler->display->display_options['pager']['options']['expose']['items_per_page_options_all'] = 0;
+  $handler->display->display_options['style_plugin'] = 'table';
+  $handler->display->display_options['style_options']['columns'] = array(
+    'name' => 'name',
+    'picture' => 'field_profile_last',
+    'field_profile_first' => 'field_profile_last',
+    'field_profile_last' => 'field_profile_last',
+    'field_profile_org' => 'field_profile_org',
+    'field_profile_org_1' => 'field_profile_org_1',
+  );
+  $handler->display->display_options['style_options']['default'] = '-1';
+  $handler->display->display_options['style_options']['info'] = array(
     'name' => array(
-      'label' => 'Name',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 0,
-      'overwrite_anonymous' => 0,
-      'anonymous_text' => '',
-      'exclude' => 1,
-      'id' => 'name',
-      'table' => 'users',
-      'field' => 'name',
-      'relationship' => 'none',
-    ),
-    'value_4' => array(
-      'label' => 'Name',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_4',
-      'table' => 'profile_values_profile_first',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-    'value_5' => array(
-      'label' => 'Name',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '[value_4] [value_5]',
-        'make_link' => 0,
-        'path' => 'users/[name]',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_5',
-      'table' => 'profile_values_profile_last',
-      'field' => 'value',
-      'relationship' => 'none',
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
     'picture' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'exclude' => 0,
-      'id' => 'picture',
-      'table' => 'users',
-      'field' => 'picture',
-      'relationship' => 'none',
-    ),
-    'value_1' => array(
-      'label' => 'Job title',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_1',
-      'table' => 'profile_values_profile_job_title',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-    'value_3' => array(
-      'label' => 'Organization',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 0,
-      'exclude' => 0,
-      'id' => 'value_3',
-      'table' => 'profile_values_profile_org',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-    'value' => array(
-      'label' => 'Interests',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'type' => 'separator',
-      'separator' => ', ',
-      'exclude' => 0,
-      'id' => 'value',
-      'table' => 'profile_values_profile_interests',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-  ));
-  $handler->override_option('filters', array(
-    'value_4' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_4_op',
-        'identifier' => 'value_4',
-        'label' => 'First name',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 0,
-      'id' => 'value_4',
-      'table' => 'profile_values_profile_first',
-      'field' => 'value',
-      'relationship' => 'none',
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_5' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_5_op',
-        'identifier' => 'value_5',
-        'label' => 'Last name',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 0,
-      'id' => 'value_5',
-      'table' => 'profile_values_profile_last',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_first' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_1' => array(
-      'operator' => 'contains',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_1_op',
-        'identifier' => 'job_title',
-        'label' => 'Job title',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 0,
-      'id' => 'value_1',
-      'table' => 'profile_values_profile_job_title',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_last' => array(
+      'sortable' => 1,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_3' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_3_op',
-        'identifier' => 'organization',
-        'label' => 'Organization',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 1,
-      'id' => 'value_3',
-      'table' => 'profile_values_profile_org',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_org' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_op',
-        'identifier' => 'interests',
-        'label' => 'Interests',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 1,
-      'id' => 'value',
-      'table' => 'profile_values_profile_interests',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_org_1' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'uid' => array(
-      'operator' => 'not in',
-      'value' => array(
-        '0' => 0,
-      ),
-      'group' => '0',
-      'exposed' => FALSE,
-      'expose' => array(
-        'operator' => FALSE,
-        'label' => '',
-      ),
-      'id' => 'uid',
-      'table' => 'users',
-      'field' => 'uid',
-      'relationship' => 'uid',
-    ),
-  ));
-  $handler->override_option('access', array(
-    'type' => 'none',
-  ));
-  $handler->override_option('cache', array(
-    'type' => 'none',
-  ));
-  $handler->override_option('title', 'Community');
-  $handler->override_option('empty', 'No one has signed up for this event. Attendees will appear as they sign up.');
-  $handler->override_option('empty_format', '1');
-  $handler->override_option('items_per_page', 100);
-  $handler->override_option('style_plugin', 'table');
-  $handler->override_option('style_options', array(
-    'grouping' => '',
-    'override' => 0,
-    'sticky' => 1,
-    'order' => 'asc',
-    'columns' => array(
-      'value_4' => 'value_4',
-      'value_5' => 'value_4',
-      'picture' => 'value_4',
-      'value_3' => 'value_3',
-      'value_2' => 'value_2',
-      'value_1' => 'value_1',
-      'value' => 'value',
-    ),
-    'info' => array(
-      'value_4' => array(
-        'sortable' => 1,
-        'separator' => ' ',
-      ),
-      'value_5' => array(
-        'sortable' => 0,
-        'separator' => '',
-      ),
-      'picture' => array(
-        'sortable' => 0,
-        'separator' => '',
-      ),
-      'value_3' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
-      'value_2' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
-      'value_1' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
-      'value' => array(
-        'separator' => '',
-      ),
-    ),
-    'default' => 'value_4',
-  ));
-  $handler = $view->new_display('page', 'Community Page (primary)', 'page_1');
-  $handler->override_option('path', 'community');
-  $handler->override_option('menu', array(
-    'type' => 'normal',
-    'title' => 'Community',
-    'description' => 'Connect with attendees',
-    'weight' => '0',
-    'name' => 'primary-links',
-  ));
-  $handler->override_option('tab_options', array(
-    'type' => 'none',
-    'title' => '',
-    'description' => '',
-    'weight' => 0,
-    'name' => 'navigation',
-  ));
-  $handler = $view->new_display('block', 'Block', 'block_1');
-  $handler->override_option('fields', array(
-    'picture' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 1,
-      'empty_zero' => 0,
-      'exclude' => 0,
-      'id' => 'picture',
-      'table' => 'users',
-      'field' => 'picture',
-      'relationship' => 'none',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-    ),
-    'value' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 0,
-      'exclude' => 1,
-      'id' => 'value',
-      'table' => 'profile_values_profile_first',
-      'field' => 'value',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-      'relationship' => 'none',
-    ),
-    'value_1' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 1,
-        'text' => '[value] [value_1]',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_1',
-      'table' => 'profile_values_profile_last',
-      'field' => 'value',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-      'relationship' => 'none',
-    ),
-    'value_2' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_2',
-      'table' => 'profile_values_profile_org',
-      'field' => 'value',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-      'relationship' => 'none',
-    ),
-  ));
-  $handler->override_option('filters', array());
-  $handler->override_option('items_per_page', 12);
-  $handler->override_option('use_more', 1);
-  $handler->override_option('use_more_always', 0);
-  $handler->override_option('use_more_text', 'All Attendees');
-  $handler->override_option('style_plugin', 'default');
-  $handler->override_option('style_options', array(
-    'grouping' => '',
-  ));
-  $handler->override_option('block_description', 'Attendee block');
-  $handler->override_option('block_caching', -1);
+  );
+  $handler->display->display_options['style_options']['override'] = 1;
+  $handler->display->display_options['style_options']['sticky'] = 0;
+  $handler->display->display_options['style_options']['empty_table'] = 0;
+  /* No results behavior: Global: Text area */
+  $handler->display->display_options['empty']['area']['id'] = 'area';
+  $handler->display->display_options['empty']['area']['table'] = 'views';
+  $handler->display->display_options['empty']['area']['field'] = 'area';
+  $handler->display->display_options['empty']['area']['empty'] = FALSE;
+  $handler->display->display_options['empty']['area']['content'] = 'No one has signed up for this event. Attendees will appear as they sign up.';
+  /* Field: User: Picture */
+  $handler->display->display_options['fields']['picture']['id'] = 'picture';
+  $handler->display->display_options['fields']['picture']['table'] = 'users';
+  $handler->display->display_options['fields']['picture']['field'] = 'picture';
+  $handler->display->display_options['fields']['picture']['label'] = '';
+  $handler->display->display_options['fields']['picture']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['picture']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['picture']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['picture']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['picture']['empty_zero'] = 0;
+  /* Field: User: First name */
+  $handler->display->display_options['fields']['field_profile_first']['id'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['field'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['field_api_classes'] = 0;
+  /* Field: User: Last name */
+  $handler->display->display_options['fields']['field_profile_last']['id'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['field'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['field_api_classes'] = 0;
+  /* Field: User: Name */
+  $handler->display->display_options['fields']['name']['id'] = 'name';
+  $handler->display->display_options['fields']['name']['table'] = 'users';
+  $handler->display->display_options['fields']['name']['field'] = 'name';
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org']['id'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['field'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['field_api_classes'] = 0;
+  /* Sort criterion: User: Last name (field_profile_last) */
+  $handler->display->display_options['sorts']['field_profile_last_value']['id'] = 'field_profile_last_value';
+  $handler->display->display_options['sorts']['field_profile_last_value']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['sorts']['field_profile_last_value']['field'] = 'field_profile_last_value';
+  /* Sort criterion: Global: Random */
+  $handler->display->display_options['sorts']['random']['id'] = 'random';
+  $handler->display->display_options['sorts']['random']['table'] = 'views';
+  $handler->display->display_options['sorts']['random']['field'] = 'random';
+  /* Filter criterion: User: First name (field_profile_first) */
+  $handler->display->display_options['filters']['field_profile_first_value']['id'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['filters']['field_profile_first_value']['field'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['operator_id'] = 'field_profile_first_value_op';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['label'] = 'First name';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['operator'] = 'field_profile_first_value_op';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['identifier'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['required'] = 0;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['multiple'] = FALSE;
+  /* Filter criterion: User: Last name (field_profile_last) */
+  $handler->display->display_options['filters']['field_profile_last_value']['id'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['filters']['field_profile_last_value']['field'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['operator_id'] = 'field_profile_last_value_op';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['label'] = 'Last name';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['operator'] = 'field_profile_last_value_op';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['identifier'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['required'] = 0;
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['multiple'] = FALSE;
+  /* Filter criterion: User: Organization (field_profile_org) */
+  $handler->display->display_options['filters']['field_profile_org_value']['id'] = 'field_profile_org_value';
+  $handler->display->display_options['filters']['field_profile_org_value']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['filters']['field_profile_org_value']['field'] = 'field_profile_org_value';
+  $handler->display->display_options['filters']['field_profile_org_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['operator_id'] = 'field_profile_org_value_op';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['label'] = 'Organization';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['operator'] = 'field_profile_org_value_op';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['identifier'] = 'field_profile_org_value';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['required'] = 0;
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['multiple'] = FALSE;
+  /* Filter criterion: User: Name */
+  $handler->display->display_options['filters']['uid']['id'] = 'uid';
+  $handler->display->display_options['filters']['uid']['table'] = 'users';
+  $handler->display->display_options['filters']['uid']['field'] = 'uid';
+  $handler->display->display_options['filters']['uid']['operator'] = 'not in';
+  $handler->display->display_options['filters']['uid']['value'] = array(
+    0 => 0,
+    1 => '1',
+  );
+  $handler->display->display_options['filters']['uid']['group'] = '0';
+  $handler->display->display_options['filters']['uid']['expose']['operator_id'] = 'uid_op';
+  $handler->display->display_options['filters']['uid']['expose']['label'] = 'Name';
+  $handler->display->display_options['filters']['uid']['expose']['use_operator'] = FALSE;
+  $handler->display->display_options['filters']['uid']['expose']['operator'] = 'uid_op';
+  $handler->display->display_options['filters']['uid']['expose']['identifier'] = 'uid';
+  $handler->display->display_options['filters']['uid']['expose']['required'] = FALSE;
+  $handler->display->display_options['filters']['uid']['expose']['remember'] = FALSE;
+  $handler->display->display_options['filters']['uid']['expose']['multiple'] = FALSE;
+
+  /* Display: Community Page (Main) */
+  $handler = $view->new_display('page', 'Community Page (Main)', 'page');
+  $handler->display->display_options['defaults']['style_plugin'] = FALSE;
+  $handler->display->display_options['style_plugin'] = 'grid';
+  $handler->display->display_options['style_options']['fill_single_line'] = 1;
+  $handler->display->display_options['defaults']['style_options'] = FALSE;
+  $handler->display->display_options['defaults']['row_plugin'] = FALSE;
+  $handler->display->display_options['row_plugin'] = 'fields';
+  $handler->display->display_options['defaults']['row_options'] = FALSE;
+  $handler->display->display_options['defaults']['fields'] = FALSE;
+  /* Field: User: Picture */
+  $handler->display->display_options['fields']['picture']['id'] = 'picture';
+  $handler->display->display_options['fields']['picture']['table'] = 'users';
+  $handler->display->display_options['fields']['picture']['field'] = 'picture';
+  $handler->display->display_options['fields']['picture']['label'] = '';
+  $handler->display->display_options['fields']['picture']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim_whitespace'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['picture']['element_label_colon'] = FALSE;
+  $handler->display->display_options['fields']['picture']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['picture']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['picture']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['picture']['hide_alter_empty'] = 1;
+  $handler->display->display_options['fields']['picture']['link_photo_to_profile'] = 1;
+  /* Field: User: First name */
+  $handler->display->display_options['fields']['field_profile_first']['id'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['field'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['label'] = '';
+  $handler->display->display_options['fields']['field_profile_first']['exclude'] = TRUE;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim_whitespace'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['element_label_colon'] = FALSE;
+  $handler->display->display_options['fields']['field_profile_first']['element_wrapper_type'] = 'span';
+  $handler->display->display_options['fields']['field_profile_first']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['hide_alter_empty'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['field_api_classes'] = 0;
+  /* Field: User: Last name */
+  $handler->display->display_options['fields']['field_profile_last']['id'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['field'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['label'] = '';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['alter_text'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['text'] = '[field_profile_first] [field_profile_last]';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim_whitespace'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['element_label_colon'] = FALSE;
+  $handler->display->display_options['fields']['field_profile_last']['element_wrapper_type'] = 'span';
+  $handler->display->display_options['fields']['field_profile_last']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['hide_alter_empty'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['field_api_classes'] = 0;
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org_1']['id'] = 'field_profile_org_1';
+  $handler->display->display_options['fields']['field_profile_org_1']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org_1']['field'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org_1']['label'] = '';
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['trim_whitespace'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['element_label_colon'] = FALSE;
+  $handler->display->display_options['fields']['field_profile_org_1']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['hide_alter_empty'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['field_api_classes'] = 0;
+  $handler->display->display_options['defaults']['sorts'] = FALSE;
+  /* Sort criterion: User: Picture */
+  $handler->display->display_options['sorts']['picture']['id'] = 'picture';
+  $handler->display->display_options['sorts']['picture']['table'] = 'users';
+  $handler->display->display_options['sorts']['picture']['field'] = 'picture';
+  $handler->display->display_options['sorts']['picture']['order'] = 'DESC';
+  /* Sort criterion: User: Created date */
+  $handler->display->display_options['sorts']['created']['id'] = 'created';
+  $handler->display->display_options['sorts']['created']['table'] = 'users';
+  $handler->display->display_options['sorts']['created']['field'] = 'created';
+  $handler->display->display_options['sorts']['created']['expose']['label'] = 'Created date';
+  $handler->display->display_options['sorts']['created']['granularity'] = 'hour';
+  /* Sort criterion: Global: Random */
+  $handler->display->display_options['sorts']['random']['id'] = 'random';
+  $handler->display->display_options['sorts']['random']['table'] = 'views';
+  $handler->display->display_options['sorts']['random']['field'] = 'random';
+  $handler->display->display_options['defaults']['filters'] = FALSE;
+  /* Filter criterion: User: First name (field_profile_first) */
+  $handler->display->display_options['filters']['field_profile_first_value']['id'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['filters']['field_profile_first_value']['field'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['group'] = 1;
+  $handler->display->display_options['filters']['field_profile_first_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['operator_id'] = 'field_profile_first_value_op';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['label'] = 'First name';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['operator'] = 'field_profile_first_value_op';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['identifier'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['required'] = 0;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['multiple'] = FALSE;
+  /* Filter criterion: User: Last name (field_profile_last) */
+  $handler->display->display_options['filters']['field_profile_last_value']['id'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['filters']['field_profile_last_value']['field'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['group'] = 1;
+  $handler->display->display_options['filters']['field_profile_last_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['operator_id'] = 'field_profile_last_value_op';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['label'] = 'Last name';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['operator'] = 'field_profile_last_value_op';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['identifier'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['required'] = 0;
+  $handler->display->display_options['filters']['field_profile_last_value']['expose']['multiple'] = FALSE;
+  /* Filter criterion: User: Organization (field_profile_org) */
+  $handler->display->display_options['filters']['field_profile_org_value']['id'] = 'field_profile_org_value';
+  $handler->display->display_options['filters']['field_profile_org_value']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['filters']['field_profile_org_value']['field'] = 'field_profile_org_value';
+  $handler->display->display_options['filters']['field_profile_org_value']['group'] = 1;
+  $handler->display->display_options['filters']['field_profile_org_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['operator_id'] = 'field_profile_org_value_op';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['label'] = 'Organization';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['operator'] = 'field_profile_org_value_op';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['identifier'] = 'field_profile_org_value';
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['required'] = 0;
+  $handler->display->display_options['filters']['field_profile_org_value']['expose']['multiple'] = FALSE;
+  $handler->display->display_options['path'] = 'community';
+  $handler->display->display_options['menu']['type'] = 'normal';
+  $handler->display->display_options['menu']['title'] = 'Community';
+  $handler->display->display_options['menu']['name'] = 'main-menu';
 
-  $views[$view->name] = $view;
+  /* Display: Block */
+  $handler = $view->new_display('block', 'Block', 'block');
+  $handler->display->display_options['defaults']['use_more'] = FALSE;
+  $handler->display->display_options['use_more'] = TRUE;
+  $handler->display->display_options['defaults']['pager'] = FALSE;
+  $handler->display->display_options['pager']['type'] = 'full';
+  $handler->display->display_options['pager']['options']['items_per_page'] = '12';
+  $handler->display->display_options['defaults']['style_plugin'] = FALSE;
+  $handler->display->display_options['style_plugin'] = 'default';
+  $handler->display->display_options['defaults']['style_options'] = FALSE;
+  $handler->display->display_options['defaults']['row_plugin'] = FALSE;
+  $handler->display->display_options['row_plugin'] = 'fields';
+  $handler->display->display_options['defaults']['row_options'] = FALSE;
+  $handler->display->display_options['defaults']['fields'] = FALSE;
+  /* Field: User: Name */
+  $handler->display->display_options['fields']['name']['id'] = 'name';
+  $handler->display->display_options['fields']['name']['table'] = 'users';
+  $handler->display->display_options['fields']['name']['field'] = 'name';
+  $handler->display->display_options['fields']['name']['relationship'] = 'uid';
+  $handler->display->display_options['fields']['name']['label'] = '';
+  $handler->display->display_options['fields']['name']['exclude'] = TRUE;
+  $handler->display->display_options['fields']['name']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['name']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['name']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['name']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['name']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['name']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['name']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['name']['link_to_user'] = 1;
+  $handler->display->display_options['fields']['name']['overwrite_anonymous'] = 0;
+  /* Field: User: Picture */
+  $handler->display->display_options['fields']['picture']['id'] = 'picture';
+  $handler->display->display_options['fields']['picture']['table'] = 'users';
+  $handler->display->display_options['fields']['picture']['field'] = 'picture';
+  $handler->display->display_options['fields']['picture']['label'] = '';
+  $handler->display->display_options['fields']['picture']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['picture']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['picture']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['picture']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['picture']['empty_zero'] = 0;
+  /* Field: User: First name */
+  $handler->display->display_options['fields']['field_profile_first']['id'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['field'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['field_api_classes'] = 0;
+  /* Field: User: Last name */
+  $handler->display->display_options['fields']['field_profile_last']['id'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['field'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['field_api_classes'] = 0;
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org']['id'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['field'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['field_api_classes'] = 0;
+  $handler->display->display_options['defaults']['filters'] = FALSE;
+  $export['attendees'] = $view;
 
-  return $views;
+  return $export;
 }
