function views_ui_pre_render_move_argument_options in Views (for Drupal 7) 8.3
Same name and namespace in other branches
- 7.3 includes/admin.inc \views_ui_pre_render_move_argument_options()
Moves argument options into their place.
When configuring the default argument behavior, almost each of the radio buttons has its own fieldset shown bellow it when the radio button is clicked. That fieldset is created through a custom form process callback. Each element that has #argument_option defined and pointing to a default behavior gets moved to the appropriate fieldset. So if #argument_option is specified as 'default', the element is moved to the 'default_options' fieldset.
1 string reference to 'views_ui_pre_render_move_argument_options'
- ArgumentPluginBase::buildOptionsForm in lib/
Drupal/ views/ Plugin/ views/ argument/ ArgumentPluginBase.php - Build the options form.
File
- views_ui/
admin.inc, line 564 - Provides the Views' administrative interface.
Code
function views_ui_pre_render_move_argument_options($form) {
foreach (element_children($form) as $key) {
$element = $form[$key];
if (!empty($element['#argument_option'])) {
$container_name = $element['#argument_option'] . '_options';
if (isset($form['no_argument']['default_action'][$container_name])) {
$form['no_argument']['default_action'][$container_name][$key] = $element;
}
// Remove the original element this duplicates.
unset($form[$key]);
}
}
return $form;
}