Stack trace.

EntityMalformedException: Missing bundle property on entity of type comment. in entity_extract_ids() (line 7672 of /Users/jucallme/Sites/systemseed/sac_platform/7.x-3.x/build/includes/common.inc). Backtrace:
entity_extract_ids('comment', Object) og_features.module:750
og_features_get_group_context(1) og_features.module:344
og_features_menu_access_callback('node_access', 'comment_reply', Array, 'comment', 'comment/reply/%node', 'view', Object) 
call_user_func_array('og_features_menu_access_callback', Array) menu.inc:636
_menu_check_access(Array, Array) menu.inc:789
_menu_translate(Array, Array) menu.inc:472
menu_get_item() menu.inc:1754
menu_get_custom_theme(1) menu.inc:1769
menu_set_custom_theme() common.inc:5117
_drupal_bootstrap_full() bootstrap.inc:2198
drupal_bootstrap(7) index.php:20

I have created a implemented the following.

We basically create a basic og_feature and then look at the state of the feature to see if it is enable or disabled. Then we remove or show the comments form biased on the state of the go_feature.

/**
 * Implements hook_og_features_registry().
 *
 * Register your feature(s) with og_features so it can be toggled within
 * a given group
 * 
 * @return
 *   An array of information used to register your feature with 
 *   og_features
 */
function sac_directory_og_features_registry() {
  $registry = array();

  // Feature: my_feature
  $feature = new stdClass;
  // The feature id
  $feature->id = 'sac_directory';
  // The name that will show up on the feature toggle form
  $feature->name = t('Directory');
  // The description that will show up on the feature toggle form
  $feature->description = t('Enable / dissable commenting for the SAC Directory Item content types.');
  // The components of the feature that will be enabled/disabled
  $feature->components = array(
    'variable' => array(
      'comment_anonymous_sac_directory_item',
      'comment_default_mode_sac_directory_item',
      'comment_default_per_page_sac_directory_item',
      'comment_form_location_sac_directory_item',
      'comment_preview_sac_directory_item',
      'comment_subject_field_sac_directory_item'
    ),
  );
  // It's recommended that you key the feature with the name of the 
  // module/feature that is supplying this, so that any custom page
  // callbacks provided by this module/feature become disabled within
  // the group
  $registry[$feature->id] = $feature;

  return $registry;
}

/**
 * Implements hook_node_view_alter().
 */
function sac_directory_node_view_alter(&$build) {
  $node = $build['#node'];
  
  if (isset($node->og_group_ref[LANGUAGE_NONE][0]['target_id'])) {
    $entity_id = $node->og_group_ref[LANGUAGE_NONE][0]['target_id'];
    $entity_type = 'node';
    $group = entity_load_single($entity_type, $entity_id);
    if (is_array($group->features_disabled) && in_array('sac_directory', $group->features_disabled)) {
      unset($build['links']['comment']['#links']['comment-add']);
      $build['links']['comment']['#links']['comment_forbidden'] = array(
        'title' => theme('comment_post_forbidden', array('node' => $node)),
        'html' => TRUE,
      );
      $build['comments']['comment_form'] = array();
    }
  }
  elseif (og_is_group_content_type('node',$node->type)) {
    // This node has not been assigned to a group
    // assume no commenting.
    unset($build['links']['comment']['#links']['comment-add']);
    $build['links']['comment']['#links']['comment_forbidden'] = array(
      'title' => theme('comment_post_forbidden', array('node' => $node)),
      'html' => TRUE,
    );
    $build['comments']['comment_form'] = array();
  }
}

NOTE i can completely comment out sac_directory_node_view_alter and the exception is still thrown.

Commenting out the line
list($entity_id) = entity_extract_ids($entity_type, $entity);
in og_features_get_group_context get me passed the error but kills a lot of what that function is trying to do.

CommentFileSizeAuthor
#3 Screen Shot 2013-04-02 at 13.43.36.png101.84 KBroam2345

Comments

mstef’s picture

Well first, OG Features doesn't support variables per-group (although, that would be a great idea). If you know how we could do that, let me know.. The supported items are on the project page and inside the documentation.

Do me a favor. Put this right above that call to entity_extract_ids() (line 750 in .module): drupal_set_message(print_r(get_defined_vars(), 1)); - and past the output here.

Also, what page is this happening on?

roam2345’s picture

@mstef

- Im running out of memory even after bumping it up 512MB, after adding drupal_set_message(print_r(get_defined_vars(), 1));
- This is happening when creating a new comment on any node.

roam2345’s picture

StatusFileSize
new101.84 KB

I have managed to get the output before running out of memory there.

attached is a screen shot with the out put.

and here is the raw output.

Status message

Array ( [menu_access] => 1 [reset] => [context] => [menu_item_function] => _og_features_menu_get_item [menu_item] => Array ( [path] => comment/reply/% [load_functions] => Array ( [2] => node_load ) [to_arg_functions] => [access_callback] => og_features_menu_access_callback [access_arguments] => a:7:{i:0;s:11:"node_access";i:1;s:13:"comment_reply";i:2;a:1:{i:0;i:2;}i:3;s:7:"comment";i:4;s:19:"comment/reply/%node";i:5;s:4:"view";i:6;i:2;} [page_callback] => comment_reply [page_arguments] => Array ( [0] => stdClass Object ( [vid] => 64 [uid] => 2 [title] => Test dealer for Cam [log] => [status] => 1 [comment] => 2 [promote] => 1 [sticky] => 0 [ds_switch] => [nid] => 64 [type] => sac_directory_item [language] => und [created] => 1364311462 [changed] => 1364506635 [tnid] => 0 [translate] => 0 [revision_timestamp] => 1364506635 [revision_uid] => 265 [body] => Array ( ) [field_sac_directory_item_address] => Array ( [und] => Array ( [0] => Array ( [country] => US [administrative_area] => NC [sub_administrative_area] => [locality] => Charlotte [dependent_locality] => [postal_code] => 28211 [thoroughfare] => 900 Charter Place [premise] => [sub_premise] => [organisation_name] => [name_line] => [first_name] => [last_name] => [data] => ) ) ) [field_sac_directory_item_amenity] => Array ( ) [field_sac_directory_item_geo] => Array ( [und] => Array ( [0] => Array ( [wkt] => POINT (-80.8546349 35.0888126) [geo_type] => point [lat] => 35.0888 [lon] => -80.8546 [left] => -80.8546 [top] => 35.0888 [right] => -80.8546 [bottom] => 35.0888 [srid] => [accuracy] => [source] => ) ) ) [field_sac_directory_item_image] => Array ( ) [field_sac_directory_item_serv] => Array ( ) [field_sac_directory_item_types] => Array ( ) [og_group_ref] => Array ( [und] => Array ( [0] => Array ( [target_id] => 65 ) ) ) [path] => Array ( [pathauto] => 1 ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [cid] => 3 [last_comment_timestamp] => 1364507258 [last_comment_name] => [last_comment_uid] => 265 [comment_count] => 2 [name] => manager.test [picture] => 0 [data] => a:1:{s:17:"mimemail_textonly";i:0;} ) ) [delivery_callback] => [fit] => 6 [number_parts] => 3 [context] => 0 [tab_parent] => [tab_root] => comment/reply/% [title] => Add new comment [title_callback] => t [title_arguments] => [theme_callback] => [theme_arguments] => Array ( ) [type] => 6 [description] => [position] => [weight] => 0 [include_file] => modules/comment/comment.pages.inc [original_map] => Array ( [0] => comment [1] => reply [2] => 64 ) [map] => Array ( [0] => comment [1] => reply [2] => stdClass Object ( [vid] => 64 [uid] => 2 [title] => Test dealer for Cam [log] => [status] => 1 [comment] => 2 [promote] => 1 [sticky] => 0 [ds_switch] => [nid] => 64 [type] => sac_directory_item [language] => und [created] => 1364311462 [changed] => 1364506635 [tnid] => 0 [translate] => 0 [revision_timestamp] => 1364506635 [revision_uid] => 265 [body] => Array ( ) [field_sac_directory_item_address] => Array ( [und] => Array ( [0] => Array ( [country] => US [administrative_area] => NC [sub_administrative_area] => [locality] => Charlotte [dependent_locality] => [postal_code] => 28211 [thoroughfare] => 900 Charter Place [premise] => [sub_premise] => [organisation_name] => [name_line] => [first_name] => [last_name] => [data] => ) ) ) [field_sac_directory_item_amenity] => Array ( ) [field_sac_directory_item_geo] => Array ( [und] => Array ( [0] => Array ( [wkt] => POINT (-80.8546349 35.0888126) [geo_type] => point [lat] => 35.0888 [lon] => -80.8546 [left] => -80.8546 [top] => 35.0888 [right] => -80.8546 [bottom] => 35.0888 [srid] => [accuracy] => [source] => ) ) ) [field_sac_directory_item_image] => Array ( ) [field_sac_directory_item_serv] => Array ( ) [field_sac_directory_item_types] => Array ( ) [og_group_ref] => Array ( [und] => Array ( [0] => Array ( [target_id] => 65 ) ) ) [path] => Array ( [pathauto] => 1 ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [cid] => 3 [last_comment_timestamp] => 1364507258 [last_comment_name] => [last_comment_uid] => 265 [comment_count] => 2 [name] => manager.test [picture] => 0 [data] => a:1:{s:17:"mimemail_textonly";i:0;} ) ) ) [entity_type] => comment [entity_id] => [entity] => stdClass Object ( [vid] => 64 [uid] => 2 [title] => Test dealer for Cam [log] => [status] => 1 [comment] => 2 [promote] => 1 [sticky] => 0 [ds_switch] => [nid] => 64 [type] => sac_directory_item [language] => und [created] => 1364311462 [changed] => 1364506635 [tnid] => 0 [translate] => 0 [revision_timestamp] => 1364506635 [revision_uid] => 265 [body] => Array ( ) [field_sac_directory_item_address] => Array ( [und] => Array ( [0] => Array ( [country] => US [administrative_area] => NC [sub_administrative_area] => [locality] => Charlotte [dependent_locality] => [postal_code] => 28211 [thoroughfare] => 900 Charter Place [premise] => [sub_premise] => [organisation_name] => [name_line] => [first_name] => [last_name] => [data] => ) ) ) [field_sac_directory_item_amenity] => Array ( ) [field_sac_directory_item_geo] => Array ( [und] => Array ( [0] => Array ( [wkt] => POINT (-80.8546349 35.0888126) [geo_type] => point [lat] => 35.0888 [lon] => -80.8546 [left] => -80.8546 [top] => 35.0888 [right] => -80.8546 [bottom] => 35.0888 [srid] => [accuracy] => [source] => ) ) ) [field_sac_directory_item_image] => Array ( ) [field_sac_directory_item_serv] => Array ( ) [field_sac_directory_item_types] => Array ( ) [og_group_ref] => Array ( [und] => Array ( [0] => Array ( [target_id] => 65 ) ) ) [path] => Array ( [pathauto] => 1 ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [cid] => 3 [last_comment_timestamp] => 1364507258 [last_comment_name] => [last_comment_uid] => 265 [comment_count] => 2 [name] => manager.test [picture] => 0 [data] => a:1:{s:17:"mimemail_textonly";i:0;} ) [entity_info] => Array ( [bean] => Array ( [label] => Block [entity class] => Bean [controller class] => BeanEntityAPIController [base table] => bean [revision table] => bean_revision [fieldable] => 1 [entity keys] => Array ( [id] => bid [bundle] => type [label] => title [name] => delta [revision] => vid [default revision] => default_revision ) [bundles] => Array ( [banner] => Array ( [label] => Banner [description] => A banner with optional title, subtitle, description, and image. Generally used for page headings. [admin] => Array ( [path] => admin/structure/block-types/manage/%bean_type [real path] => admin/structure/block-types/manage/banner [bundle argument] => 4 [access arguments] => Array ( [0] => administer bean types ) ) [rdf_mapping] => Array ( ) ) [fancy_block] => Array ( [label] => Fancy Block [description] => A basic block with optional title, content, and background image. [admin] => Array ( [path] => admin/structure/block-types/manage/%bean_type [real path] => admin/structure/block-types/manage/fancy-block [bundle argument] => 4 [access arguments] => Array ( [0] => administer bean types ) ) [rdf_mapping] => Array ( ) ) [twitter_pull] => Array ( [label] => Twitter Pull [description] => [admin] => Array ( [path] => admin/structure/block-types/manage/%bean_type [real path] => admin/structure/block-types/manage/twitter-pull [bundle argument] => 4 [access arguments] => Array ( [0] => administer bean types ) ) [rdf_mapping] => Array ( ) ) ) [bundle keys] => Array ( [bundle] => type ) [label callback] => entity_class_label [uri callback] => entity_class_uri [access callback] => bean_access [module] => bean [metadata controller class] => BeanMetadataController [view modes] => Array ( [default] => Array ( [label] => Default [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [field replacement] => Array ( [title] => Array ( [field] => Array ( [type] => text [cardinality] => 1 [translatable] => 1 ) [instance] => Array ( [label] => Title [description] => The Title of the block. [required] => [settings] => Array ( [text_processing] => 0 ) [widget] => Array ( [weight] => -5 ) ) ) ) [translation] => Array ( [entity_translation] => Array ( [class] => EntityTranslationBeanHandler [base path] => block/%bean_delta [path wildcard] => %bean_delta ) ) [static cache] => 1 [field cache] => 1 [load hook] => bean_load [schema_fields_sql] => Array ( [base table] => Array ( [0] => bid [1] => vid [2] => delta [3] => label [4] => title [5] => type [6] => view_mode [7] => data [8] => uid [9] => created [10] => changed ) [revision table] => Array ( [0] => bid [1] => vid [2] => uid [3] => delta [4] => label [5] => title [6] => type [7] => view_mode [8] => data [9] => log [10] => created [11] => changed ) ) [token type] => bean [configuration] => ) [comment] => Array ( [label] => Comment [base table] => comment [uri callback] => comment_uri [fieldable] => 1 [controller class] => CommentController [entity keys] => Array ( [id] => cid [bundle] => node_type [label] => subject [language] => language [revision] => ) [bundles] => Array ( [comment_node_page] => Array ( [label] => Basic page comment [node bundle] => page [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/page/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_blog] => Array ( [label] => Blog comment [node bundle] => sac_blog [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-blog/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_blog_container] => Array ( [label] => Blog Container comment [node bundle] => sac_blog_container [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-blog-container/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_event] => Array ( [label] => Event comment [node bundle] => sac_event [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-event/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_faq] => Array ( [label] => FAQ comment [node bundle] => faq [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/faq/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_forum] => Array ( [label] => Forum topic comment [node bundle] => forum [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/forum/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_media_gallery] => Array ( [label] => Gallery comment [node bundle] => media_gallery [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/media-gallery/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_industry_deal] => Array ( [label] => Industry Deal comment [node bundle] => sac_industry_deal [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-industry-deal/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_chapter] => Array ( [label] => Local Chapter comment [node bundle] => sac_chapter [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-chapter/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_chapter_apply] => Array ( [label] => Local Chapter Application comment [node bundle] => sac_chapter_apply [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-chapter-apply/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_chapter_blog] => Array ( [label] => Local Chapter Blog comment [node bundle] => chapter_blog [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/chapter-blog/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_chapter_event] => Array ( [label] => Local Chapter Event comment [node bundle] => sac_chapter_event [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-chapter-event/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_local_deal] => Array ( [label] => Local Deal comment [node bundle] => sac_local_deal [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-local-deal/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_news] => Array ( [label] => News article comment [node bundle] => news [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/news/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_newsletter_issue] => Array ( [label] => Newsletter Issue comment [node bundle] => newsletter_issue [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/newsletter-issue/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_newsletter_article] => Array ( [label] => Newsletter article comment [node bundle] => newsletter_article [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/newsletter-article/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_poll] => Array ( [label] => Poll comment [node bundle] => poll [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/poll/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_product] => Array ( [label] => Product comment [node bundle] => sac_product [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-product/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_rotor] => Array ( [label] => Rotor item comment [node bundle] => rotor [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/rotor/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_directory] => Array ( [label] => SAC Directory comment [node bundle] => sac_directory [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-directory/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_sac_directory_item] => Array ( [label] => SAC Directory Item comment [node bundle] => sac_directory_item [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/sac-directory-item/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) [comment_node_webform] => Array ( [label] => Webform comment [node bundle] => webform [admin] => Array ( [path] => admin/structure/types/manage/%comment_node_type/comment [bundle argument] => 4 [real path] => admin/structure/types/manage/webform/comment [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Comment ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [comment_body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [pid] => Array ( [predicates] => Array ( [0] => sioc:reply_of ) [type] => rel ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) ) ) ) [view modes] => Array ( [full] => Array ( [label] => Full comment [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [static cache] => [field cache] => 1 [load hook] => comment_load [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => cid [1] => pid [2] => nid [3] => uid [4] => subject [5] => hostname [6] => created [7] => changed [8] => status [9] => thread [10] => name [11] => mail [12] => homepage [13] => language ) ) [redirect] => [token type] => comment [plural label] => Comments [description] => Remark or note that refers to a node. [access callback] => entity_metadata_comment_access [creation callback] => entity_metadata_create_comment [save callback] => comment_save [deletion callback] => comment_delete [view callback] => entity_metadata_view_comment [form callback] => entity_metadata_form_comment [configuration] => ) [commerce_customer_profile] => Array ( [label] => Commerce Customer profile [controller class] => CommerceCustomerProfileEntityController [base table] => commerce_customer_profile [revision table] => commerce_customer_profile_revision [fieldable] => 1 [entity keys] => Array ( [id] => profile_id [revision] => revision_id [bundle] => type ) [bundle keys] => Array ( [bundle] => type ) [bundles] => Array ( [billing] => Array ( [label] => Billing information [admin] => Array ( [path] => admin/commerce/customer-profiles/types/billing [real path] => admin/commerce/customer-profiles/types/billing [access arguments] => Array ( [0] => administer customer profile types ) ) [rdf_mapping] => Array ( ) ) ) [load hook] => commerce_customer_profile_load [view modes] => Array ( [administrator] => Array ( [label] => Administrator [custom settings] => ) [customer] => Array ( [label] => Customer [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [uri callback] => commerce_customer_ui_customer_profile_uri [label callback] => commerce_customer_profile_label [token type] => commerce-customer-profile [metadata controller class] => [access callback] => commerce_entity_access [access arguments] => Array ( [user key] => uid [access tag] => commerce_customer_profile_access ) [permission labels] => Array ( [singular] => customer profile [plural] => customer profiles ) [redirect] => [static cache] => 1 [field cache] => 1 [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => profile_id [1] => revision_id [2] => type [3] => uid [4] => status [5] => created [6] => changed [7] => data ) [revision table] => Array ( [0] => profile_id [1] => revision_id [2] => revision_uid [3] => status [4] => log [5] => revision_timestamp [6] => data ) ) [configuration] => ) [commerce_line_item] => Array ( [label] => Commerce Line item [controller class] => CommerceLineItemEntityController [base table] => commerce_line_item [fieldable] => 1 [entity keys] => Array ( [id] => line_item_id [bundle] => type [label] => line_item_id [revision] => ) [bundle keys] => Array ( [bundle] => type ) [bundles] => Array ( [sac_event_reg] => Array ( [label] => Event registration [admin] => Array ( [path] => admin/commerce/config/line-items/sac-event-reg [access arguments] => Array ( [0] => administer line item types ) ) [rdf_mapping] => Array ( ) ) [product] => Array ( [label] => Product [admin] => Array ( [path] => admin/commerce/config/line-items/product [access arguments] => Array ( [0] => administer line item types ) ) [rdf_mapping] => Array ( ) ) [userpoints] => Array ( [label] => Club Cash [admin] => Array ( [path] => admin/commerce/config/line-items/userpoints [access arguments] => Array ( [0] => administer line item types ) ) [rdf_mapping] => Array ( ) ) ) [load hook] => commerce_line_item_load [view modes] => Array ( [display] => Array ( [label] => Display [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [access callback] => commerce_line_item_access [metadata controller class] => [token type] => commerce-line-item [permission labels] => Array ( [singular] => line item [plural] => line items ) [redirect] => [static cache] => 1 [field cache] => 1 [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => line_item_id [1] => order_id [2] => type [3] => line_item_label [4] => quantity [5] => created [6] => changed [7] => data ) ) [inline entity form] => Array ( [controller] => CommerceLineItemInlineEntityFormController ) [configuration] => ) [commerce_order] => Array ( [label] => Commerce Order [controller class] => CommerceOrderEntityController [locking mode] => pessimistic [base table] => commerce_order [revision table] => commerce_order_revision [load hook] => commerce_order_load [uri callback] => commerce_order_ui_order_uri [label callback] => commerce_order_label [fieldable] => 1 [entity keys] => Array ( [id] => order_id [revision] => revision_id [bundle] => type ) [bundle keys] => Array ( [bundle] => type ) [bundles] => Array ( [commerce_order] => Array ( [label] => Order [admin] => Array ( [path] => admin/commerce/config/order [real path] => admin/commerce/config/order [access arguments] => Array ( [0] => configure order settings ) ) [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( [administrator] => Array ( [label] => Administrator [custom settings] => ) [customer] => Array ( [label] => Customer [custom settings] => ) [backoffice] => Array ( [label] => Backoffice [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [token type] => commerce-order [metadata controller class] => [access callback] => commerce_entity_access [access arguments] => Array ( [user key] => uid [access tag] => commerce_order_access ) [permission labels] => Array ( [singular] => order [plural] => orders ) [redirect] => [static cache] => 1 [field cache] => 1 [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => order_id [1] => order_number [2] => revision_id [3] => type [4] => uid [5] => mail [6] => status [7] => created [8] => changed [9] => hostname [10] => data ) [revision table] => Array ( [0] => order_id [1] => order_number [2] => revision_id [3] => revision_uid [4] => mail [5] => status [6] => log [7] => revision_timestamp [8] => revision_hostname [9] => data ) ) [configuration] => ) [commerce_payment_transaction] => Array ( [label] => Commerce Payment transaction [controller class] => CommercePaymentTransactionEntityController [base table] => commerce_payment_transaction [revision table] => commerce_payment_transaction_revision [fieldable] => [entity keys] => Array ( [id] => transaction_id [revision] => revision_id [bundle] => payment_method [label] => transaction_id ) [bundle keys] => Array ( [bundle] => payment_method ) [bundles] => Array ( [commerce_no_payment] => Array ( [label] => No payment [rdf_mapping] => Array ( ) ) [commerce_payment_example] => Array ( [label] => Example payment [rdf_mapping] => Array ( ) ) [commerce_userpoints] => Array ( [label] => Club Cash [rdf_mapping] => Array ( ) ) ) [load hook] => commerce_payment_transaction_load [view modes] => Array ( [administrator] => Array ( [label] => Administrator [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [uri callback] => commerce_payment_ui_payment_transaction_uri [access callback] => commerce_payment_transaction_access [token type] => commerce-payment-transaction [metadata controller class] => [permission labels] => Array ( [singular] => payment transaction [plural] => payment transactions ) [redirect] => [static cache] => 1 [field cache] => 1 [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => transaction_id [1] => revision_id [2] => uid [3] => order_id [4] => payment_method [5] => instance_id [6] => remote_id [7] => message [8] => message_variables [9] => amount [10] => currency_code [11] => status [12] => remote_status [13] => payload [14] => created [15] => changed [16] => data ) [revision table] => Array ( [0] => transaction_id [1] => revision_id [2] => revision_uid [3] => remote_id [4] => message [5] => message_variables [6] => amount [7] => currency_code [8] => status [9] => remote_status [10] => log [11] => revision_timestamp [12] => data ) ) [configuration] => ) [commerce_product] => Array ( [label] => Commerce Product [controller class] => CommerceProductEntityController [base table] => commerce_product [revision table] => commerce_product_revision [fieldable] => 1 [entity keys] => Array ( [id] => product_id [bundle] => type [label] => title [revision] => revision_id [language] => language ) [bundle keys] => Array ( [bundle] => type ) [bundles] => Array ( [product] => Array ( [label] => Product [admin] => Array ( [path] => admin/commerce/config/product-variation-types/product [access arguments] => Array ( [0] => administer product types ) ) [rdf_mapping] => Array ( ) ) [sac_event_reg] => Array ( [label] => Event registration [admin] => Array ( [path] => admin/commerce/config/product-variation-types/sac-event-reg [access arguments] => Array ( [0] => administer product types ) ) [rdf_mapping] => Array ( ) ) ) [load hook] => commerce_product_load [view modes] => Array ( [full] => Array ( [label] => Admin display [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) [line_item] => Array ( [label] => Line item [custom settings] => 1 ) [commerce_line_item_display] => Array ( [label] => Commerce Line item: Display [custom settings] => ) [commerce_line_item_diff_standard] => Array ( [label] => Commerce Line item: Revision comparison [custom settings] => ) [commerce_line_item_token] => Array ( [label] => Commerce Line item: Tokens [custom settings] => ) [node_full] => Array ( [label] => Content: Full content [custom settings] => ) [node_teaser] => Array ( [label] => Content: Teaser [custom settings] => 1 ) [node_rss] => Array ( [label] => Content: RSS [custom settings] => ) [node_diff_standard] => Array ( [label] => Content: Revision comparison [custom settings] => ) [node_media_gallery_block] => Array ( [label] => Content: Media gallery block [custom settings] => ) [node_token] => Array ( [label] => Content: Tokens [custom settings] => ) ) [uri callback] => commerce_product_ui_product_uri [metadata controller class] => [token type] => commerce-product [access callback] => commerce_entity_access [access arguments] => Array ( [user key] => uid [access tag] => commerce_product_access ) [permission labels] => Array ( [singular] => product [plural] => products ) [redirect] => [translation] => Array ( [locale] => 1 [entity_translation] => Array ( [class] => EntityTranslationCommerceProductHandler [bundle callback] => commerce_product_entity_translation_supported_type [default settings] => Array ( [default_language] => und [hide_language_selector] => ) [base path] => admin/commerce/products/%commerce_product ) ) [field replacement] => Array ( [title] => Array ( [field] => Array ( [type] => text [cardinality] => 1 [translatable] => 1 ) [instance] => Array ( [label] => Title [required] => 1 [settings] => Array ( [text_processing] => 0 ) [widget] => Array ( [weight] => -5 ) ) ) ) [static cache] => 1 [field cache] => 1 [schema_fields_sql] => Array ( [base table] => Array ( [0] => product_id [1] => revision_id [2] => sku [3] => title [4] => type [5] => language [6] => uid [7] => status [8] => created [9] => changed [10] => data ) [revision table] => Array ( [0] => product_id [1] => revision_id [2] => sku [3] => title [4] => revision_uid [5] => status [6] => log [7] => revision_timestamp [8] => data ) ) [inline entity form] => Array ( [controller] => CommerceProductInlineEntityFormController ) [configuration] => ) [entityqueue_subqueue] => Array ( [label] => Subqueue [plural label] => Subqueues [entity class] => EntitySubqueue [controller class] => EntitySubqueueEntityController [module] => entityqueue [base table] => entityqueue_subqueue [load hook] => entityqueue_subqueue_load [uri callback] => entityqueue_subqueue_uri [label callback] => entityqueue_subqueue_label [fieldable] => 1 [entity keys] => Array ( [id] => subqueue_id [bundle] => queue [label] => label [revision] => ) [bundles] => Array ( [sac_deals_industry] => Array ( [label] => Industry Deals [admin] => Array ( [path] => admin/structure/entityqueue/list/%entityqueue [real path] => admin/structure/entityqueue/list/sac_deals_industry [bundle argument] => 4 [access callback] => entityqueue_subqueue_access [access arguments] => Array ( [0] => edit [1] => sac_deals_industry [2] => load_current ) ) [rdf_mapping] => Array ( ) ) [sac_deals_local] => Array ( [label] => Local Deals [admin] => Array ( [path] => admin/structure/entityqueue/list/%entityqueue [real path] => admin/structure/entityqueue/list/sac_deals_local [bundle argument] => 4 [access callback] => entityqueue_subqueue_access [access arguments] => Array ( [0] => edit [1] => sac_deals_local [2] => load_current ) ) [rdf_mapping] => Array ( ) ) [sac_event_featured] => Array ( [label] => Featured Event [admin] => Array ( [path] => admin/structure/entityqueue/list/%entityqueue [real path] => admin/structure/entityqueue/list/sac_event_featured [bundle argument] => 4 [access callback] => entityqueue_subqueue_access [access arguments] => Array ( [0] => edit [1] => sac_event_featured [2] => load_current ) ) [rdf_mapping] => Array ( ) ) ) [bundle keys] => Array ( [bundle] => name ) [view modes] => Array ( [full] => Array ( [label] => queue [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [metadata controller class] => [access callback] => entityqueue_subqueue_access [static cache] => 1 [field cache] => 1 [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => subqueue_id [1] => queue [2] => name [3] => label [4] => module [5] => uid [6] => data ) ) [token type] => entityqueue_subqueue [configuration] => ) [field_collection_item] => Array ( [label] => Field collection item [label callback] => entity_class_label [uri callback] => entity_class_uri [entity class] => FieldCollectionItemEntity [controller class] => EntityAPIController [base table] => field_collection_item [fieldable] => 1 [redirect] => [entity keys] => Array ( [id] => item_id [bundle] => field_name [revision] => ) [module] => field_collection [view modes] => Array ( [full] => Array ( [label] => Full content [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [access callback] => field_collection_item_access [metadata controller class] => FieldCollectionItemMetadataController [bundles] => Array ( [field_sac_chapter_contact] => Array ( [label] => Field collection field_sac_chapter_contact [admin] => Array ( [path] => admin/structure/field-collections/%field_collection_field_name [real path] => admin/structure/field-collections/field-sac-chapter-contact [bundle argument] => 3 [access arguments] => Array ( [0] => administer field collections ) ) [rdf_mapping] => Array ( ) ) [field_sac_chapter_goal] => Array ( [label] => Field collection field_sac_chapter_goal [admin] => Array ( [path] => admin/structure/field-collections/%field_collection_field_name [real path] => admin/structure/field-collections/field-sac-chapter-goal [bundle argument] => 3 [access arguments] => Array ( [0] => administer field collections ) ) [rdf_mapping] => Array ( ) ) [field_sac_chapter_local] => Array ( [label] => Field collection field_sac_chapter_local [admin] => Array ( [path] => admin/structure/field-collections/%field_collection_field_name [real path] => admin/structure/field-collections/field-sac-chapter-local [bundle argument] => 3 [access arguments] => Array ( [0] => administer field collections ) ) [rdf_mapping] => Array ( ) ) [field_sac_chapter_branding] => Array ( [label] => Field collection field_sac_chapter_branding [admin] => Array ( [path] => admin/structure/field-collections/%field_collection_field_name [real path] => admin/structure/field-collections/field-sac-chapter-branding [bundle argument] => 3 [access arguments] => Array ( [0] => administer field collections ) ) [rdf_mapping] => Array ( ) ) ) [static cache] => 1 [field cache] => 1 [load hook] => field_collection_item_load [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => item_id [1] => field_name ) ) [token type] => field_collection_item [configuration] => ) [mandrill_template_map] => Array ( [label] => Mandrill Template Map [plural label] => Mandrill Template Maps [controller class] => EntityAPIControllerExportable [entity class] => MandrillTemplateMap [base table] => mandrill_template_map [uri callback] => mandrill_template_map_uri [fieldable] => [exportable] => 1 [module] => mandrill [access callback] => mandrill_template_map_access [entity keys] => Array ( [id] => mandrill_template_map_entity_id [label] => label [name] => name [revision] => [bundle] => ) [admin ui] => Array ( [path] => admin/config/services/mandrill/templates [file] => mandrill.admin.inc [controller class] => MandrillTemplateMapUIController ) [static cache] => 1 [field cache] => 1 [load hook] => mandrill_template_map_load [bundles] => Array ( [mandrill_template_map] => Array ( [label] => Mandrill Template Map [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => mandrill_template_map_entity_id [1] => name [2] => label [3] => mailsystem_key [4] => template_id [5] => main_section [6] => author_uid [7] => sections [8] => created [9] => updated [10] => status [11] => module ) ) [token type] => mandrill_template_map [configuration] => 1 ) [node] => Array ( [label] => Content [controller class] => NodeController [base table] => node [revision table] => node_revision [uri callback] => node_uri [fieldable] => 1 [entity keys] => Array ( [id] => nid [revision] => vid [bundle] => type [label] => title [language] => language ) [bundle keys] => Array ( [bundle] => type ) [bundles] => Array ( [page] => Array ( [label] => Basic page [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/page [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [sac_blog] => Array ( [label] => Blog [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-blog [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [teaser] => Array ( [label] => Two column [path] => sites/all/modules/contrib/ds/layouts/ds_2col [regions] => Array ( [left] => Left [right] => Right ) [css] => 1 [layout] => ds_2col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => sac_blog_date_calendar ) [right] => Array ( [0] => title [1] => body [2] => node_link ) ) [fields] => Array ( [sac_blog_date_calendar] => left [title] => right [body] => right [node_link] => right ) [classes] => Array ( [left] => Array ( [alpha] => alpha [grid-2] => grid-2 ) [right] => Array ( [omega] => omega [grid-16] => grid-16 ) ) ) ) ) ) [sac_blog_container] => Array ( [label] => Blog Container [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-blog-container [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [full] => Array ( [label] => One column [path] => sites/all/modules/contrib/ds/layouts/ds_1col [regions] => Array ( [ds_content] => Content ) [layout] => ds_1col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [ds_content] => Array ( [0] => body [1] => title ) ) [fields] => Array ( [body] => ds_content [title] => ds_content ) [classes] => Array ( ) ) ) ) ) [sac_event] => Array ( [label] => Event [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-event [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [full] => Array ( [label] => One column [path] => sites/all/modules/contrib/ds/layouts/ds_1col [regions] => Array ( [ds_content] => Content ) [layout] => ds_1col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [ds_content] => Array ( [0] => field_sac_media_main_image [1] => product:commerce_price [2] => field_sac_event_reg_product [3] => field_product [4] => field_sac_event_date [5] => body [6] => field_sac_event_location [7] => field_sac_event_meeting_location [8] => field_sac_event_meeting_date ) ) [fields] => Array ( [field_sac_media_main_image] => ds_content [product:commerce_price] => ds_content [field_sac_event_reg_product] => ds_content [field_product] => ds_content [field_sac_event_date] => ds_content [body] => ds_content [field_sac_event_location] => ds_content [field_sac_event_meeting_location] => ds_content [field_sac_event_meeting_date] => ds_content ) [classes] => Array ( ) ) ) [teaser] => Array ( [label] => Two column [path] => sites/all/modules/contrib/ds/layouts/ds_2col [regions] => Array ( [left] => Left [right] => Right ) [css] => 1 [layout] => ds_2col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => field_sac_media_main_image ) [right] => Array ( [0] => title [1] => product:commerce_price [2] => field_sac_event_date [3] => body [4] => field_sac_event_reg_product [5] => field_product [6] => node_link ) ) [fields] => Array ( [field_sac_media_main_image] => left [title] => right [product:commerce_price] => right [field_sac_event_date] => right [body] => right [field_sac_event_reg_product] => right [field_product] => right [node_link] => right ) [classes] => Array ( ) ) ) ) ) [faq] => Array ( [label] => FAQ [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/faq [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [forum] => Array ( [label] => Forum topic [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/forum [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:BoardPost ) [taxonomy_forums] => Array ( [predicates] => Array ( [0] => sioc:has_container ) [type] => rel ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [media_gallery] => Array ( [label] => Gallery [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/media-gallery [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [sac_industry_deal] => Array ( [label] => Industry Deal [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-industry-deal [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [full] => Array ( [label] => One column [path] => sites/all/modules/contrib/ds/layouts/ds_1col [regions] => Array ( [ds_content] => Content ) [layout] => ds_1col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [ds_content] => Array ( [0] => title [1] => field_sac_deal_header_text [2] => field_sac_deal_sub_text [3] => field_sac_deal_button ) ) [fields] => Array ( [title] => ds_content [field_sac_deal_header_text] => ds_content [field_sac_deal_sub_text] => ds_content [field_sac_deal_button] => ds_content ) [classes] => Array ( ) ) ) ) ) [sac_chapter] => Array ( [label] => Local Chapter [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-chapter [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [sac_chapter_apply] => Array ( [label] => Local Chapter Application [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-chapter-apply [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [chapter_blog] => Array ( [label] => Local Chapter Blog [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/chapter-blog [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [teaser] => Array ( [label] => Two column [path] => sites/all/modules/contrib/ds/layouts/ds_2col [regions] => Array ( [left] => Left [right] => Right ) [css] => 1 [layout] => ds_2col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => sac_chapter_blog_date_calendar ) [right] => Array ( [0] => title [1] => body [2] => node_link ) ) [fields] => Array ( [sac_chapter_blog_date_calendar] => left [title] => right [body] => right [node_link] => right ) [classes] => Array ( [left] => Array ( [alpha] => alpha [grid-3] => grid-3 ) [right] => Array ( [omega] => omega [grid-15] => grid-15 ) ) ) ) ) ) [sac_chapter_event] => Array ( [label] => Local Chapter Event [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-chapter-event [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [full] => Array ( [label] => One column [path] => sites/all/modules/contrib/ds/layouts/ds_1col [regions] => Array ( [ds_content] => Content ) [layout] => ds_1col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [ds_content] => Array ( [0] => field_sac_chapter_event_image [1] => field_sac_chapter_event_date [2] => field_sac_chapter_event_location [3] => body ) ) [fields] => Array ( [field_sac_chapter_event_image] => ds_content [field_sac_chapter_event_date] => ds_content [field_sac_chapter_event_location] => ds_content [body] => ds_content ) [classes] => Array ( ) ) ) [teaser] => Array ( [label] => Two column [path] => sites/all/modules/contrib/ds/layouts/ds_2col [regions] => Array ( [left] => Left [right] => Right ) [css] => 1 [layout] => ds_2col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => field_sac_chapter_event_image ) [right] => Array ( [0] => title [1] => field_sac_chapter_event_date [2] => field_sac_chapter_event_location [3] => body [4] => node_link ) ) [fields] => Array ( [field_sac_chapter_event_image] => left [title] => right [field_sac_chapter_event_date] => right [field_sac_chapter_event_location] => right [body] => right [node_link] => right ) [classes] => Array ( [left] => Array ( [alpha] => alpha [grid-3] => grid-3 ) [right] => Array ( [omega] => omega [grid-15] => grid-15 ) ) ) ) ) ) [sac_local_deal] => Array ( [label] => Local Deal [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-local-deal [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [full] => Array ( [label] => One column [path] => sites/all/modules/contrib/ds/layouts/ds_1col [regions] => Array ( [ds_content] => Content ) [layout] => ds_1col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [ds_content] => Array ( [0] => field_sac_deal_image [1] => comments ) ) [fields] => Array ( [field_sac_deal_image] => ds_content [comments] => ds_content ) [classes] => Array ( ) [wrappers] => Array ( ) [layout_wrapper] => div ) ) ) ) [news] => Array ( [label] => News article [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/news [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [teaser] => Array ( [label] => Two column [path] => sites/all/modules/contrib/ds/layouts/ds_2col [regions] => Array ( [left] => Left [right] => Right ) [css] => 1 [layout] => ds_2col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => field_alumni_news_image ) [right] => Array ( [0] => title [1] => post_date [2] => body [3] => node_link ) ) [fields] => Array ( [field_alumni_news_image] => left [title] => right [post_date] => right [body] => right [node_link] => right ) [classes] => Array ( [left] => Array ( [alpha] => alpha [grid-5] => grid-5 ) [right] => Array ( [omega] => omega [grid-13] => grid-13 ) ) ) ) ) ) [newsletter_issue] => Array ( [label] => Newsletter Issue [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/newsletter-issue [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [full] => Array ( [label] => Fluid two column stacked [path] => sites/all/modules/contrib/ds/layouts/ds_2col_stacked_fluid [regions] => Array ( [header] => Header [left] => Left [right] => Right [footer] => Footer ) [css] => 1 [layout] => ds_2col_stacked_fluid [settings] => Array ( [hide_empty_regions] => 1 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => field_newsletter_headline [1] => field_newsletter_image ) [footer] => Array ( [0] => field_newsletter_articles ) [right] => Array ( [0] => field_newsletter_features ) ) [fields] => Array ( [field_newsletter_headline] => left [field_newsletter_articles] => footer [field_newsletter_image] => left [field_newsletter_features] => right ) [classes] => Array ( [left] => Array ( [alpha] => alpha [grid-12] => grid-12 ) [right] => Array ( [omega] => omega [grid-6] => grid-6 ) ) ) ) ) ) [newsletter_article] => Array ( [label] => Newsletter article [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/newsletter-article [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [layouts] => Array ( [teaser] => Array ( [label] => Two column [path] => sites/all/modules/contrib/ds/layouts/ds_2col [regions] => Array ( [left] => Left [right] => Right ) [css] => 1 [layout] => ds_2col [settings] => Array ( [hide_empty_regions] => 0 [hide_sidebars] => 0 [regions] => Array ( [left] => Array ( [0] => field_newsletter_article_image ) [right] => Array ( [0] => alumni_base_node_anchor [1] => title [2] => field_newsletter_article_stitle [3] => body [4] => field_newsletter_article_link ) ) [fields] => Array ( [field_newsletter_article_image] => left [alumni_base_node_anchor] => right [title] => right [field_newsletter_article_stitle] => right [body] => right [field_newsletter_article_link] => right ) [classes] => Array ( [left] => Array ( [alpha] => alpha [grid-4] => grid-4 ) [right] => Array ( [omega] => omega [grid-14] => grid-14 ) ) ) ) ) ) [poll] => Array ( [label] => Poll [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/poll [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Post [1] => sioct:Poll ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [sac_product] => Array ( [label] => Product [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-product [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [rotor] => Array ( [label] => Rotor item [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/rotor [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [sac_directory] => Array ( [label] => SAC Directory [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-directory [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [sac_directory_item] => Array ( [label] => SAC Directory Item [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/sac-directory-item [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) [webform] => Array ( [label] => Webform [admin] => Array ( [path] => admin/structure/types/manage/%node_type [real path] => admin/structure/types/manage/webform [bundle argument] => 4 [access arguments] => Array ( [0] => administer content types ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) ) ) [view modes] => Array ( [full] => Array ( [label] => Full content [custom settings] => ) [teaser] => Array ( [label] => Teaser [custom settings] => 1 ) [rss] => Array ( [label] => RSS [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [media_gallery_block] => Array ( [label] => Media gallery block [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [static cache] => 1 [field cache] => 1 [load hook] => node_load [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => nid [1] => vid [2] => type [3] => language [4] => title [5] => uid [6] => status [7] => created [8] => changed [9] => comment [10] => promote [11] => sticky [12] => tnid [13] => translate ) [revision table] => Array ( [0] => nid [1] => vid [2] => uid [3] => title [4] => log [5] => timestamp [6] => status [7] => comment [8] => promote [9] => sticky [10] => ds_switch ) ) [inline entity form] => Array ( [controller] => NodeInlineEntityFormController ) [default path] => node/%node [token type] => node [bundle label] => Content type [xmlsitemap] => Array ( [process callback] => xmlsitemap_node_xmlsitemap_process_node_links ) [plural label] => Nodes [description] => Nodes represent the main site content items. [access callback] => entity_metadata_no_hook_node_access [creation callback] => entity_metadata_create_node [save callback] => node_save [deletion callback] => node_delete [revision deletion callback] => node_revision_delete [form callback] => entity_metadata_form_node [view callback] => entity_metadata_view_node [configuration] => ) [og_membership_type] => Array ( [label] => OG membership type [controller class] => EntityAPIControllerExportable [entity class] => OgMembershipType [base table] => og_membership_type [fieldable] => 1 [entity keys] => Array ( [id] => id [label] => description [name] => name [revision] => [bundle] => ) [exportable] => 1 [export] => Array ( [default hook] => default_og_membership_type ) [bundle of] => og_membership [module] => og [metadata controller class] => EntityDefaultMetadataController [views controller class] => EntityDefaultViewsController [access callback] => og_membership_type_access [entity cache] => [admin ui] => Array ( [path] => admin/config/group/group-membership [file] => includes/og.admin.inc [controller class] => OgMembershipTypeUIController ) [static cache] => 1 [field cache] => 1 [load hook] => og_membership_type_load [bundles] => Array ( [og_membership_type] => Array ( [label] => OG membership type [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => id [1] => name [2] => description [3] => status [4] => module [5] => language ) ) [token type] => og_membership_type [configuration] => 1 ) [og_membership] => Array ( [label] => OG membership [entity class] => OgMembership [controller class] => EntityAPIController [base table] => og_membership [fieldable] => 1 [entity keys] => Array ( [id] => id [label] => [bundle] => type [revision] => ) [label callback] => og_membership_label [bundles] => Array ( [og_membership_type_default] => Array ( [label] => og_membership_type_default [admin] => Array ( [path] => admin/config/group/group-membership/manage/%og_membership_type [real path] => admin/config/group/group-membership/manage/og_membership_type_default [bundle argument] => 5 [access arguments] => Array ( [0] => administer group ) ) [rdf_mapping] => Array ( ) ) ) [bundle keys] => Array ( [bundle] => name ) [module] => og [metadata controller class] => OgMembershipMetadataController [views controller class] => OgMembershipViewsController [access callback] => og_membership_access [entity cache] => [static cache] => 1 [field cache] => 1 [load hook] => og_membership_load [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => id [1] => type [2] => etid [3] => entity_type [4] => gid [5] => group_type [6] => state [7] => created [8] => field_name [9] => language ) ) [token type] => og_membership [configuration] => ) [redirect] => Array ( [label] => Redirect [base table] => redirect [controller class] => RedirectController [entity keys] => Array ( [id] => rid [bundle] => type [revision] => ) [fieldable] => [uuid] => [redirect] => [static cache] => 1 [field cache] => 1 [load hook] => redirect_load [bundles] => Array ( ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => rid [1] => hash [2] => type [3] => uid [4] => source [5] => source_options [6] => redirect [7] => redirect_options [8] => language [9] => status_code [10] => count [11] => access ) ) [token type] => redirect [configuration] => ) [registration] => Array ( [label] => Registration [plural label] => Registrations [controller class] => EntityAPIController [entity class] => Registration [metadata controller class] => RegistrationMetadataController [base table] => registration [fieldable] => 1 [entity keys] => Array ( [id] => registration_id [bundle] => type [revision] => ) [access callback] => registration_access [bundle keys] => Array ( [bundle] => name ) [bundles] => Array ( [sac_event_reg] => Array ( [label] => Event registration [admin] => Array ( [path] => admin/structure/registration/registration_types/manage/%registration_type [real path] => admin/structure/registration/registration_types/manage/sac_event_reg [bundle argument] => 5 [access arguments] => Array ( [0] => administer registration types ) ) ) ) [view modes] => Array ( [full] => Array ( [label] => Full Registration [custom settings] => ) [review_pane] => Array ( [label] => Commerce Checkout Review Pane [custom settings] => 1 ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [uri callback] => entity_class_uri [token type] => registration [module] => registration [label callback] => entity_class_label [entity cache] => [static cache] => 1 [field cache] => 1 [load hook] => registration_load [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => registration_id [1] => type [2] => entity_id [3] => entity_type [4] => anon_mail [5] => count [6] => user_uid [7] => author_uid [8] => state [9] => created [10] => updated [11] => order_id ) ) [views controller class] => RegistrationViewsController [redirect] => [configuration] => ) [registration_type] => Array ( [label] => Registration type [entity class] => RegistrationType [controller class] => EntityAPIControllerExportable [base table] => registration_type [fieldable] => [bundle of] => registration [exportable] => 1 [entity keys] => Array ( [id] => id [name] => name [label] => label [revision] => [bundle] => ) [access callback] => registration_type_access [module] => registration [admin ui] => Array ( [path] => admin/structure/registration/registration_types [file] => registration_type.admin.inc [file path] => sites/all/modules/contrib/registration/includes [controller class] => RegistrationTypeUIController ) [entity cache] => [static cache] => 1 [field cache] => 1 [load hook] => registration_type_load [bundles] => Array ( [registration_type] => Array ( [label] => Registration type [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => id [1] => name [2] => label [3] => weight [4] => locked [5] => data [6] => status [7] => module ) ) [token type] => registration_type [configuration] => 1 ) [registration_state] => Array ( [label] => Registration State [plural label] => Registration states [controller class] => RegistrationStateController [entity class] => RegistrationState [base table] => registration_state [fieldable] => [entity keys] => Array ( [id] => registration_state_id [label] => label [name] => name [revision] => [bundle] => ) [bundles] => Array ( [registration_state] => Array ( [label] => Registration States [rdf_mapping] => Array ( ) ) ) [admin ui] => Array ( [path] => admin/structure/registration/registration_states [file] => registration.forms.inc [file path] => sites/all/modules/contrib/registration/includes [controller class] => RegistrationStatesUIController ) [token type] => registration_state [module] => registration [access callback] => registration_state_access [exportable] => 1 [entity cache] => [static cache] => 1 [field cache] => 1 [load hook] => registration_state_load [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => registration_state_id [1] => name [2] => label [3] => description [4] => default_state [5] => active [6] => show_on_form [7] => weight [8] => status [9] => module ) ) [configuration] => 1 ) [file] => Array ( [label] => File [base table] => file_managed [entity keys] => Array ( [id] => fid [label] => filename [revision] => [bundle] => type ) [static cache] => [fieldable] => 1 [controller class] => DrupalDefaultEntityController [field cache] => 1 [load hook] => file_load [bundles] => Array ( [audio] => Array ( [label] => Audio [admin] => Array ( [path] => admin/structure/file-types/manage/%file_type [real path] => admin/structure/file-types/manage/audio [bundle argument] => 4 ) [rdf_mapping] => Array ( ) ) [document] => Array ( [label] => Document [admin] => Array ( [path] => admin/structure/file-types/manage/%file_type [real path] => admin/structure/file-types/manage/document [bundle argument] => 4 ) [rdf_mapping] => Array ( ) ) [image] => Array ( [label] => Image [admin] => Array ( [path] => admin/structure/file-types/manage/%file_type [real path] => admin/structure/file-types/manage/image [bundle argument] => 4 ) [rdf_mapping] => Array ( ) ) [video] => Array ( [label] => Video [admin] => Array ( [path] => admin/structure/file-types/manage/%file_type [real path] => admin/structure/file-types/manage/video [bundle argument] => 4 ) [rdf_mapping] => Array ( ) [layouts] => Array ( [default] => Array ( [label] => One column [path] => sites/all/modules/contrib/ds/layouts/ds_1col [regions] => Array ( [ds_content] => Content ) [layout] => ds_1col [settings] => Array ( [regions] => Array ( [ds_content] => Array ( [0] => file ) ) [fields] => Array ( [file] => ds_content ) [classes] => Array ( ) [wrappers] => Array ( ) [layout_wrapper] => div [layout_attributes] => [layout_attributes_merge] => ) ) ) ) [archive] => Array ( [label] => Archive [admin] => Array ( [path] => admin/structure/file-types/manage/%file_type [real path] => admin/structure/file-types/manage/archive [bundle argument] => 4 ) [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( [teaser] => Array ( [label] => Teaser [custom settings] => 1 ) [full] => Array ( [label] => Full content [custom settings] => ) [preview] => Array ( [label] => Preview [custom settings] => 1 ) [media_gallery_thumbnail] => Array ( [label] => Gallery thumbnail [custom settings] => ) [media_gallery_lightbox] => Array ( [label] => Gallery lightbox [custom settings] => ) [media_gallery_detail] => Array ( [label] => Gallery detail [custom settings] => ) [media_gallery_block_thumbnail] => Array ( [label] => Gallery block thumbnail [custom settings] => ) [media_gallery_collection_thumbnail] => Array ( [label] => Gallery collection thumbnail [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) [sac_media_fullwidth_custom] => Array ( [label] => Full width (custom height) [custom settings] => ) [sac_media_fullwidth_fixed] => Array ( [label] => Full width (fixed height) [custom settings] => ) [sac_media_thumbnail_custom] => Array ( [label] => Thumbnail (custom height) [custom settings] => ) [sac_media_thumbnail_fixed] => Array ( [label] => Thumbnail (fixed height) [custom settings] => ) ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => fid [1] => uid [2] => filename [3] => uri [4] => filemime [5] => filesize [6] => status [7] => timestamp [8] => origname [9] => type ) ) [bundle keys] => Array ( [bundle] => type ) [uri callback] => file_entity_uri [creation callback] => entity_metadata_create_object [view callback] => file_view_multiple [edit callback] => file_entity_metadata_form_file [token type] => file [plural label] => Files [description] => Uploaded file. [access callback] => entity_metadata_file_access [save callback] => file_save [deletion callback] => entity_metadata_delete_file [configuration] => ) [taxonomy_term] => Array ( [label] => Taxonomy term [controller class] => TaxonomyTermController [base table] => taxonomy_term_data [uri callback] => taxonomy_term_uri [fieldable] => 1 [entity keys] => Array ( [id] => tid [bundle] => vocabulary_machine_name [label] => name [revision] => ) [bundle keys] => Array ( [bundle] => machine_name ) [bundles] => Array ( [tags] => Array ( [label] => Tags [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/tags [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [faq_categories] => Array ( [label] => FAQ categories [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/faq_categories [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [forums] => Array ( [label] => Forums [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/forums [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Container [1] => sioc:Forum ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) [uri callback] => forum_uri ) [userpoints] => Array ( [label] => Userpoints [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/userpoints [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [media_folders] => Array ( [label] => Media Folders [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/media_folders [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [gallery_collections] => Array ( [label] => Gallery collections [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/gallery_collections [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [sac_directory_amenities] => Array ( [label] => Directory Amenities [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/sac_directory_amenities [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [sac_directory_services] => Array ( [label] => Directory Services [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/sac_directory_services [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) [sac_directory_type] => Array ( [label] => Directory Type [admin] => Array ( [path] => admin/structure/taxonomy/%taxonomy_vocabulary_machine_name [real path] => admin/structure/taxonomy/sac_directory_type [bundle argument] => 3 [access arguments] => Array ( [0] => administer taxonomy ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:Concept ) [name] => Array ( [predicates] => Array ( [0] => rdfs:label [1] => skos:prefLabel ) ) [description] => Array ( [predicates] => Array ( [0] => skos:definition ) ) [vid] => Array ( [predicates] => Array ( [0] => skos:inScheme ) [type] => rel ) [parent] => Array ( [predicates] => Array ( [0] => skos:broader ) [type] => rel ) ) ) ) [view modes] => Array ( [full] => Array ( [label] => Taxonomy term page [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [static cache] => 1 [field cache] => 1 [load hook] => taxonomy_term_load [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => tid [1] => vid [2] => name [3] => description [4] => format [5] => weight ) ) [inline entity form] => Array ( [controller] => TaxonomyTermInlineEntityFormController ) [default path] => taxonomy/term/%taxonomy_term [token type] => term [bundle label] => Vocabulary [xmlsitemap] => Array ( [process callback] => xmlsitemap_taxonomy_xmlsitemap_process_taxonomy_term_links ) [plural label] => Taxonomy terms [description] => Taxonomy terms are used for classifying content. [access callback] => entity_metadata_taxonomy_access [creation callback] => entity_metadata_create_object [save callback] => taxonomy_term_save [deletion callback] => taxonomy_term_delete [view callback] => entity_metadata_view_single [form callback] => entity_metadata_form_taxonomy_term [configuration] => ) [taxonomy_vocabulary] => Array ( [label] => Taxonomy vocabulary [controller class] => TaxonomyVocabularyController [base table] => taxonomy_vocabulary [entity keys] => Array ( [id] => vid [label] => name [revision] => [bundle] => ) [fieldable] => [static cache] => 1 [field cache] => 1 [load hook] => taxonomy_vocabulary_load [bundles] => Array ( [taxonomy_vocabulary] => Array ( [label] => Taxonomy vocabulary [rdf_mapping] => Array ( [rdftype] => Array ( [0] => skos:ConceptScheme ) [name] => Array ( [predicates] => Array ( [0] => dc:title ) ) [description] => Array ( [predicates] => Array ( [0] => rdfs:comment ) ) ) ) ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => vid [1] => name [2] => machine_name [3] => description [4] => hierarchy [5] => module [6] => weight ) ) [token type] => vocabulary [plural label] => Taxonomy vocabularies [description] => Vocabularies contain related taxonomy terms, which are used for classifying content. [access callback] => entity_metadata_taxonomy_access [creation callback] => entity_metadata_create_object [save callback] => taxonomy_vocabulary_save [deletion callback] => taxonomy_vocabulary_delete [form callback] => entity_metadata_form_taxonomy_vocabulary [configuration] => ) [user] => Array ( [label] => User [controller class] => UserController [base table] => users [uri callback] => user_uri [label callback] => format_username [fieldable] => 1 [entity keys] => Array ( [id] => uid [revision] => [bundle] => ) [bundles] => Array ( [user] => Array ( [label] => User [admin] => Array ( [path] => admin/config/people/accounts [access arguments] => Array ( [0] => administer users ) ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:UserAccount ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [homepage] => Array ( [predicates] => Array ( [0] => foaf:page ) [type] => rel ) ) ) ) [view modes] => Array ( [full] => Array ( [label] => User account [custom settings] => ) [diff_standard] => Array ( [label] => Revision comparison [custom settings] => ) [token] => Array ( [label] => Tokens [custom settings] => ) ) [static cache] => 1 [field cache] => 1 [load hook] => user_load [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => uid [1] => name [2] => pass [3] => mail [4] => theme [5] => signature [6] => signature_format [7] => created [8] => access [9] => login [10] => status [11] => timezone [12] => language [13] => picture [14] => init [15] => data ) ) [default path] => user/%user [token type] => user [plural label] => Users [description] => Users who have created accounts on your site. [access callback] => entity_metadata_user_access [creation callback] => entity_metadata_create_object [save callback] => entity_metadata_user_save [deletion callback] => user_delete [form callback] => entity_metadata_form_user [view callback] => entity_metadata_view_single [configuration] => ) [wsclient_service] => Array ( [label] => Web service description [entity class] => WSClientServiceDescription [controller class] => EntityAPIControllerExportable [base table] => wsclient_service [module] => wsclient [fieldable] => 1 [entity keys] => Array ( [id] => id [name] => name [label] => label [revision] => [bundle] => ) [exportable] => 1 [access callback] => wsclient_entity_access [features controller class] => WSClientFeaturesController [static cache] => 1 [field cache] => 1 [load hook] => wsclient_service_load [bundles] => Array ( [wsclient_service] => Array ( [label] => Web service description [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => id [1] => name [2] => label [3] => url [4] => operations [5] => datatypes [6] => global_parameters [7] => type [8] => settings [9] => authentication [10] => status [11] => module ) ) [token type] => wsclient_service [admin ui] => Array ( [controller class] => WSClientUIController [path] => admin/config/services/wsclient [file] => wsclient_ui.inc [file path] => sites/all/modules/contrib/wsclient/wsclient_ui ) [uri callback] => wsclient_ui_uri [configuration] => 1 ) [wysiwyg_profile] => Array ( [label] => Wysiwyg profile [base table] => wysiwyg [controller class] => WysiwygProfileController [fieldable] => [static cache] => [entity keys] => Array ( [id] => format [revision] => [bundle] => ) [field cache] => 1 [load hook] => wysiwyg_profile_load [bundles] => Array ( [wysiwyg_profile] => Array ( [label] => Wysiwyg profile [rdf_mapping] => Array ( ) ) ) [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => format [1] => editor [2] => settings ) ) [token type] => wysiwyg_profile [configuration] => ) [rules_config] => Array ( [label] => Rules configuration [controller class] => RulesEntityController [base table] => rules_config [fieldable] => 1 [entity keys] => Array ( [id] => id [name] => name [label] => label [revision] => [bundle] => ) [module] => rules [static cache] => 1 [bundles] => Array ( [rules_config] => Array ( [label] => Rules configuration [rdf_mapping] => Array ( ) ) ) [configuration] => 1 [exportable] => 1 [export] => Array ( [default hook] => default_rules_configuration ) [access callback] => rules_config_access [features controller class] => RulesFeaturesController [field cache] => 1 [load hook] => rules_config_load [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => id [1] => name [2] => label [3] => plugin [4] => active [5] => weight [6] => status [7] => dirty [8] => module [9] => access_exposed [10] => data ) ) [token type] => rules_config ) [menu_link] => Array ( [label] => Menu link [controller class] => DrupalDefaultEntityController [base table] => menu_links [uri callback] => xmlsitemap_menu_menu_link_uri [fieldable] => [static cache] => 1 [field cache] => 1 [entity keys] => Array ( [id] => mlid [bundle] => menu_name [label] => link_title [revision] => ) [load hook] => [view modes] => Array ( ) [translation] => Array ( ) [schema_fields_sql] => Array ( [base table] => Array ( [0] => menu_name [1] => mlid [2] => plid [3] => link_path [4] => router_path [5] => link_title [6] => options [7] => module [8] => hidden [9] => external [10] => has_children [11] => expanded [12] => weight [13] => depth [14] => customized [15] => p1 [16] => p2 [17] => p3 [18] => p4 [19] => p5 [20] => p6 [21] => p7 [22] => p8 [23] => p9 [24] => updated ) ) [xmlsitemap] => Array ( [process callback] => xmlsitemap_menu_xmlsitemap_process_menu_links ) [bundle label] => Menu [bundles] => Array ( [devel] => Array ( [label] => Development [admin] => Array ( [path] => admin/structure/menu/manage/%menu/edit [bundle argument] => 4 [real path] => admin/structure/menu/manage/devel/edit [access arguments] => Array ( [0] => administer menus ) ) ) [menu-info-menu] => Array ( [label] => Info menu [admin] => Array ( [path] => admin/structure/menu/manage/%menu/edit [bundle argument] => 4 [real path] => admin/structure/menu/manage/menu-info-menu/edit [access arguments] => Array ( [0] => administer menus ) ) ) [main-menu] => Array ( [label] => Main menu [admin] => Array ( [path] => admin/structure/menu/manage/%menu/edit [bundle argument] => 4 [real path] => admin/structure/menu/manage/main-menu/edit [access arguments] => Array ( [0] => administer menus ) ) ) [management] => Array ( [label] => Management [admin] => Array ( [path] => admin/structure/menu/manage/%menu/edit [bundle argument] => 4 [real path] => admin/structure/menu/manage/management/edit [access arguments] => Array ( [0] => administer menus ) ) ) [navigation] => Array ( [label] => Navigation [admin] => Array ( [path] => admin/structure/menu/manage/%menu/edit [bundle argument] => 4 [real path] => admin/structure/menu/manage/navigation/edit [access arguments] => Array ( [0] => administer menus ) ) ) [user-menu] => Array ( [label] => User menu [admin] => Array ( [path] => admin/structure/menu/manage/%menu/edit [bundle argument] => 4 [real path] => admin/structure/menu/manage/user-menu/edit [access arguments] => Array ( [0] => administer menus ) ) ) ) [configuration] => ) ) [arg] => stdClass Object ( [vid] => 64 [uid] => 2 [title] => Test dealer for Cam [log] => [status] => 1 [comment] => 2 [promote] => 1 [sticky] => 0 [ds_switch] => [nid] => 64 [type] => sac_directory_item [language] => und [created] => 1364311462 [changed] => 1364506635 [tnid] => 0 [translate] => 0 [revision_timestamp] => 1364506635 [revision_uid] => 265 [body] => Array ( ) [field_sac_directory_item_address] => Array ( [und] => Array ( [0] => Array ( [country] => US [administrative_area] => NC [sub_administrative_area] => [locality] => Charlotte [dependent_locality] => [postal_code] => 28211 [thoroughfare] => 900 Charter Place [premise] => [sub_premise] => [organisation_name] => [name_line] => [first_name] => [last_name] => [data] => ) ) ) [field_sac_directory_item_amenity] => Array ( ) [field_sac_directory_item_geo] => Array ( [und] => Array ( [0] => Array ( [wkt] => POINT (-80.8546349 35.0888126) [geo_type] => point [lat] => 35.0888 [lon] => -80.8546 [left] => -80.8546 [top] => 35.0888 [right] => -80.8546 [bottom] => 35.0888 [srid] => [accuracy] => [source] => ) ) ) [field_sac_directory_item_image] => Array ( ) [field_sac_directory_item_serv] => Array ( ) [field_sac_directory_item_types] => Array ( ) [og_group_ref] => Array ( [und] => Array ( [0] => Array ( [target_id] => 65 ) ) ) [path] => Array ( [pathauto] => 1 ) [rdf_mapping] => Array ( [rdftype] => Array ( [0] => sioc:Item [1] => foaf:Document ) [title] => Array ( [predicates] => Array ( [0] => dc:title ) ) [created] => Array ( [predicates] => Array ( [0] => dc:date [1] => dc:created ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [changed] => Array ( [predicates] => Array ( [0] => dc:modified ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) [body] => Array ( [predicates] => Array ( [0] => content:encoded ) ) [uid] => Array ( [predicates] => Array ( [0] => sioc:has_creator ) [type] => rel ) [name] => Array ( [predicates] => Array ( [0] => foaf:name ) ) [comment_count] => Array ( [predicates] => Array ( [0] => sioc:num_replies ) [datatype] => xsd:integer ) [last_activity] => Array ( [predicates] => Array ( [0] => sioc:last_activity_date ) [datatype] => xsd:dateTime [callback] => date_iso8601 ) ) [cid] => 3 [last_comment_timestamp] => 1364507258 [last_comment_name] => [last_comment_uid] => 265 [comment_count] => 2 [name] => manager.test [picture] => 0 [data] => a:1:{s:17:"mimemail_textonly";i:0;} ) )
mstef’s picture

You're using OG 2.x, right?

roam2345’s picture

Correct,

projects[og][subdir] = contrib
projects[og][download][type] = git
projects[og][download][url] = http://git.drupal.org/project/og.git
; projects[og][download][branch] = 7.x-2.x
projects[og][download][revision] = 4a1a139ff2b67ccebb3e151d6aa7a826f6358377

mstef’s picture

Okay, I can replicate. I'm looking in to this now.

mstef’s picture

Well, this is part of the big "hack" that og_features needs in order to properly determine group context; due to a few outstanding issues/bugs with OG2.

The problem here is that $entity_type is 'comment' but the entity object is actually a node.

I'll place that line inside a try{} and properly handle the entity exception quietly.

mstef’s picture

roam2345’s picture

should probably even wrap it in if ($entity_type != 'comment') {} as they will always fail.

thanks for the fix.

roam2345’s picture

Issue summary: View changes

more description