function rb_views_get_writable_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.
2 calls to rb_views_get_writable_representation_properties()
- rb_views_create_view_representation in ./
rb_views.module - Creates a new view representation array from a given view object.
- rb_view_update_real_view in ./
rb_views.module - Updates a view object according to any changes made to a view representation.
File
- ./
rb_views.module, line 142 - Globally available functions for Rules' Views integration.
Code
function rb_views_get_writable_representation_properties() {
return array(
'args' => 'args',
'current_page' => 'current_page',
'items_per_page' => 'items_per_page',
'offset' => 'offset',
);
}