You are here

function rb_views_get_nonwritable_representation_properties in Rules Bonus Pack 7

Returns an array of non-handler properties for view representations.

The returned array is keyed with the representation name, with each value being the property name used in the real view.

1 call to rb_views_get_nonwritable_representation_properties()
rb_views_create_view_representation in ./rb_views.module
Creates a new view representation array from a given view object.

File

./rb_views.module, line 126
Globally available functions for Rules' Views integration.

Code

function rb_views_get_nonwritable_representation_properties() {
  return array(
    'machine_name' => 'name',
    'display' => 'current_display',
    'human_name' => 'human_name',
    'base_table' => 'base_table',
    'total_rows' => 'total_rows',
  );
}