You are here

function hook_draggableviews_handler_native_arguments_alter in DraggableViews 7.2

If Native handler used, you can alter arguments set before saved to database.

This can be used when you would like to exclude or add some of arguments to be recorded to database. Also you can add new records to be saved to database (for example for translated nodes, etc.)

Parameters

array $arguments: Array of arguments before saving.

array $form_values: Array of submitted entity ids and weights.

object $view: Views object.

See also

http://drupal.org/node/1463596#comment-5687620

1 invocation of hook_draggableviews_handler_native_arguments_alter()
draggableviews_handler_native::set in handlers/draggableviews_handler_native.inc
Save weight value.

File

./draggableviews.api.php, line 24
Hooks provided by the Draggableviews module.

Code

function hook_draggableviews_handler_native_arguments_alter(&$arguments, $view, &$form_values) {
}